Skip to content
https://share.google

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
70
GRADE
C
FIX
4
REVIEW
2
PASS
6
INFO
0
Checks
12
6 PASS 2 REVIEW 4 FIX
D
Security Headers
Action
4 of 10 headers properly configured
FIX
4 of 10 headers properly configured
Critical::
HSTS header is missing
Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.
Expected: max-age=31536000; includeSubDomains
Info::
X-Content-Type-Options is properly configured
Got: nosniff
Warning::
X-Frame-Options header is missing
This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.
Expected: DENY
Warning::
Referrer-Policy header is missing
Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.
Expected: strict-origin-when-cross-origin
Warning::
Permissions-Policy header is missing
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
Expected: geolocation=(), camera=(), microphone=()
Info::
Content-Security-Policy is present
Got: script-src 'nonce-Ypxb0_ua9hW2SbQVbk-trw' 'report-sample' 'strict-dynamic' 'unsa…
Info::
Cross-Origin-Opener-Policy is set but not 'same-origin'
Got: same-origin; report-to="share-google-eng-team" Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: sffe

Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.

Expected: max-age=31536000; includeSubDomains
Why this matters

Without HSTS, a network attacker can downgrade the very first connection to HTTP and steal the user's session.

Learn more

HSTS tells browsers 'never speak HTTP to this domain again.' Without it, a network attacker (public WiFi, malicious ISP, hostile DNS) intercepts the first HTTP attempt and serves a downgraded version of your site. One header, big surface reduction.

Source: RFC 6797 / OWASP

This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.

Expected: DENY
Why this matters

Without frame protection, your site can be embedded in a hostile page and used for clickjacking.

Learn more

Clickjacking overlays your site under a transparent malicious page so users click invisible buttons. Setting X-Frame-Options: DENY (or a modern frame-ancestors CSP directive) blocks the embedding entirely. There's almost never a legitimate reason to allow it.

Source: OWASP / MDN

Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.

Expected: strict-origin-when-cross-origin
Why this matters

Default browser behavior leaks full URLs (including query params and tokens) to every third-party resource — set a strict policy.

Learn more

Without a Referrer-Policy header, browsers send the full referring URL with images, scripts, and fonts loaded from third-party origins. URLs containing tokens, user IDs, or session params end up in third-party logs. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter) to limit leakage.

Source: MDN / W3C

Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.

Expected: geolocation=(), camera=(), microphone=()
Why this matters

Permissions-Policy locks down browser APIs you don't use — without it, every page can request camera/mic/geolocation if XSS lands.

Learn more

By default every page can request the camera, microphone, geolocation, payment APIs, and dozens more. Permissions-Policy turns off the ones you don't need so a future bug can't quietly start using them. It's a defense-in-depth header — one line, big surface reduction.

Source: MDN / W3C

COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.

Expected: require-corp
Why this matters

COEP enforces that all embedded resources opt-in to cross-origin embedding — required for cross-origin isolation features.

Learn more

Cross-Origin-Embedder-Policy: require-corp ensures every embedded resource (script, iframe, image) explicitly allows being loaded cross-origin. Combined with COOP, this enables the cross-origin-isolated context that unlocks SharedArrayBuffer, high-resolution timers, and other powerful APIs.

Source: MDN / web.dev

Expected: same-origin
Why this matters

COOP is set to a less-restrictive value (same-origin-allow-popups or unsafe-none) — partial isolation only.

Learn more

COOP: same-origin is the strictest level. same-origin-allow-popups allows authenticated popup windows back to your origin. unsafe-none is the legacy default (effectively off). Pick the strictest level your app's popup flows tolerate.

Source: MDN COOP

F
Content Security Policy
Action
3 of 10 CSP checks passed
FIX
3 of 10 CSP checks passed
Info::
Raw CSP policy
Got: script-src 'nonce-Ypxb0_ua9hW2SbQVbk-trw' 'report-sample' 'strict-dynamic' 'unsafe-eval' 'unsafe-inline' http: https:; object-src 'none'; report-uri https://csp.withgoogle.com/csp/share-google-eng-team; base-uri 'none'
Warning::
default-src directive is missing
default-src provides a fallback for other directives. Set it to restrict default resource loading.
Expected: default-src 'self'
Critical::
'unsafe-inline' found in script source
'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.
Got: script-src 'nonce-Ypxb0_ua9hW2SbQVbk-trw' 'report-sample' 'strict-dynamic' 'unsafe-eval' 'unsafe-inline' http: https:
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src 'nonce-Ypxb0_ua9hW2SbQVbk-trw' 'report-sample' 'strict-dynamic' 'unsafe-eval' 'unsafe-inline' http: https:
Info::
No wildcard in script source
Info::
object-src is set to 'none'
Got: object-src 'none'
Info::
base-uri is properly restricted
Got: base-uri 'none'
Warning::
frame-ancestors directive is missing
frame-ancestors controls who can embed your page, preventing clickjacking. Set it to 'self' or 'none'.
Expected: frame-ancestors 'self'
Warning::
form-action directive is missing
form-action restricts where forms can submit data, preventing form hijacking.
Expected: form-action 'self'
Info::
upgrade-insecure-requests is not set
This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.
Expected: upgrade-insecure-requests

'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.

Why this matters

Unsafe value (unsafe-inline, unsafe-eval) in script-src defeats CSP's main protection — XSS injections can execute again.

Learn more

unsafe-inline allows inline <script> tags; unsafe-eval allows eval() and similar. Both are necessary for some legacy code but explicitly dangerous. Migrate to nonces (per-page random tokens) or hashes (per-script SHA-256) instead.

Source: OWASP CSP / MDN

'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.

Why this matters

Unsafe value (unsafe-inline, unsafe-eval) in script-src defeats CSP's main protection — XSS injections can execute again.

Learn more

unsafe-inline allows inline <script> tags; unsafe-eval allows eval() and similar. Both are necessary for some legacy code but explicitly dangerous. Migrate to nonces (per-page random tokens) or hashes (per-script SHA-256) instead.

Source: OWASP CSP / MDN

default-src provides a fallback for other directives. Set it to restrict default resource loading.

Expected: default-src 'self'
Why this matters

Security gaps expose your site and users to attacks, eroding trust.

frame-ancestors controls who can embed your page, preventing clickjacking. Set it to 'self' or 'none'.

Expected: frame-ancestors 'self'
Why this matters

Security gaps expose your site and users to attacks, eroding trust.

form-action restricts where forms can submit data, preventing form hijacking.

Expected: form-action 'self'
Why this matters

Security gaps expose your site and users to attacks, eroding trust.

This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.

Expected: upgrade-insecure-requests
Why this matters

Without upgrade-insecure-requests, any HTTP subresource link survives as a mixed-content warning instead of auto-upgrading.

Learn more

Adding `upgrade-insecure-requests` to your CSP turns every http:// subresource fetch into https:// at the browser layer. One-line defense against accidental mixed content from legacy links or third-party widgets.

Source: MDN CSP

Parsed Policy

script-src 'nonce-Ypxb0_ua9hW2SbQVbk-trw''report-sample''strict-dynamic''unsafe-eval''unsafe-inline'http:https:
object-src 'none'
report-uri https://csp.withgoogle.com/csp/share-google-eng-team
base-uri 'none'
F
Subresource Integrity
Action
0 of 2 external resources have SRI
FIX
0 of 2 external resources have SRI
Warning::
External link from fonts.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Product+Sans:400&subset=latin
Warning::
External link from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.google.com/css/maia.css
SRI Coverage 0 / 2 of external resources have integrity hashes
TagDomainIntegrity
<link>fonts.googleapis.com Missing
<link>www.google.com Missing
D
Permissions-Policy
Action
No header set
FIX
No header set
Warning::
No Permissions-Policy header
Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

No Permissions-Policy header set.

Without this header, embedded iframes can request access to sensitive device features.

Suggested header
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
B
CORS Configuration
No CORS headers
REVIEW
No CORS headers
Info::
No CORS headers present — secure default
CORS Configuration Secure

No CORS headers detected.

Cross-origin requests are blocked by browser same-origin policy.

Origin reflection test

Some servers mirror the request Origin header, which can be exploited. Test manually:

curl -sI -H "Origin: https://evil.com" <url> | grep -i access-control
B
security.txt
Published with 0 contact(s)
REVIEW

security.txt

A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_128_GCM_SHA256
Info::
HTTP/2 is not negotiated
HTTP/2 provides multiplexing and header compression for better performance.
Got: http/1.1
Info::
Certificate is valid (expires in 61 days)
Got: 2026-06-22T08:35:48Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 325 domain(s)
Got: misc-sni.google.com, *.aiplatform-notebook.cloud.google.com, *.aiplatform-training.cloud.google.com, *.backupdr.cloud.google.com, *.backupdr.cloud.google, *.backupdr-staging.cloud.google.com, *.backupdr-staging.cloud.google, *.backupdr-autopush.cloud.google.com, *.backupdr-autopush.cloud.google, *.backupdr-dev.cloud.google.com, *.backupdr-dev.cloud.google, *.backupdr-sandbox.cloud.google.com, *.backupdr-sandbox.cloud.google, *.brocaproject.com, brocaproject.com, *.composer.cloud.google.com, *.composer.cloud.google, *.composer-staging.cloud.google.com, *.composer-staging.cloud.google, *.composer-qa.cloud.google.com, *.composer-qa.cloud.google, *.composer-dev.cloud.google.com, *.composer-dev.cloud.google, *.datalab.cloud.google.com, *.datafusion.cloud.google.com, *.datafusion.cloud.google, *.datafusion-staging.cloud.google.com, *.datafusion-staging.cloud.google, *.datafusion-dev.cloud.google.com, *.datafusion-dev.cloud.google, *.datafusion-api.cloud.google.com, *.datafusion-api.cloud.google, *.datafusion-api-staging.cloud.google.com, *.datafusion-api-staging.cloud.google, *.datafusion-api-dev.cloud.google.com, *.datafusion-api-dev.cloud.google, *.dataplex.cloud.google.com, *.dataplex-staging.cloud.google.com, *.dataplex-dev.cloud.google.com, *.dataproc.cloud.google.com, *.dataproc.cloud.google, *.dataproc-image-staging.cloud.google.com, *.dataproc-image-staging.cloud.google, *.dataproc-staging.cloud.google.com, *.dataproc-staging.cloud.google, *.dataproc-test.cloud.google.com, *.dataproc-test.cloud.google, *.earthengine.google.co.in, *.earthengine.google.com, *.fiber.google.com, *.gateway.dev, *.de.gateway.dev, *.ew.gateway.dev, *.uc.gateway.dev, *.global.accountverification.cloud.google, *.staging-global.accountverification.cloud.google, *.autopush-global.accountverification.cloud.google, *.google-syndication.com, *.dev.google-syndication.com, *.staging.google-syndication.com, *.googleacquisitionmigration.com, *.gvt5.com, *.healthcare.cloud.google.com, *.machinelearningtools.cloud.google.com, *.machinelearningtools-staging.cloud.google.com, *.machinelearningtools-autopush.cloud.google.com, *.machinelearningtools-dev.cloud.google.com, *.mapmaker.google.com, *.microhost.google.com, *.notebooks.cloud.google.com, *.notebooks.cloud.google, *.picnik.com, picnik.com, *.pipelines.cloud.google.com, *.podcasts.goog, *.tensorboard.cloud.google.com, *.tensorboard-autopush.cloud.google.com, *.tensorboard-dev.cloud.google.com, *.tensorboard-staging.cloud.google.com, *.tensorboard-test.cloud.google.com, abc.xyz, *.abc.xyz, adsense.com, www.adsense.com, adsensecustomsearchads.com, *.adsensecustomsearchads.com, adsenseformobileapps.com, advertisercommunity.com, *.advertisercommunity.com, cloudyoryx.dev, *.cloudyoryx.dev, eageroryx.dev, *.eageroryx.dev, stage.advertisercommunity.com, *.stage.advertisercommunity.com, de.advertisercommunity.com, *.de.advertisercommunity.com, en.advertisercommunity.com, *.en.advertisercommunity.com, es.advertisercommunity.com, *.es.advertisercommunity.com, fr.advertisercommunity.com, *.fr.advertisercommunity.com, id.advertisercommunity.com, *.id.advertisercommunity.com, it.advertisercommunity.com, *.it.advertisercommunity.com, ja.advertisercommunity.com, *.ja.advertisercommunity.com, pl.advertisercommunity.com, *.pl.advertisercommunity.com, pt.advertisercommunity.com, *.pt.advertisercommunity.com, ru.advertisercommunity.com, *.ru.advertisercommunity.com, th.advertisercommunity.com, *.th.advertisercommunity.com, vi.advertisercommunity.com, *.vi.advertisercommunity.com, zh.advertisercommunity.com, *.zh.advertisercommunity.com, amie.google, *.amie.google, ampcache.com, *.ampcache.com, ampproject.com, *.ampproject.com, ampproject.net, *.ampproject.net, *.recaptcha.ampproject.net, ampproject.org, *.ampproject.org, *.cdn.ampproject.org, androidify.com, *.androidify.com, app.goo.gl, *.app.goo.gl, channel-app.google, console.au.cloud.google, *.au.cloud.google, console.ca.cloud.google, *.ca.cloud.google, console.eu.cloud.google, *.eu.cloud.google, console.eu.cloud.google.com, console.il.cloud.google, *.il.cloud.google, console.in.cloud.google, *.in.cloud.google, console.it.cloud.google, *.it.cloud.google, console.jp.cloud.google, *.jp.cloud.google, console.sa.cloud.google, *.sa.cloud.google, console.uk.cloud.google, *.uk.cloud.google, console.us.cloud.google, *.us.cloud.google, cloud.google, *.cloud.google, colab.research.google.com, code.webrtc.org, bugs.webrtc.org, issues.webrtc.org, *.issues.webrtc.org, chronicle.security, *.chronicle.security, *.backstory.chronicle.security, *.backstory-staging.chronicle.security, chronicleforgood.com, *.chronicleforgood.com, looker.chronicle.security, *.looker.chronicle.security, looker-staging.chronicle.security, *.looker-staging.chronicle.security, chroniclesec.com, *.chroniclesec.com, *.backstory.chroniclesec.com, crossmediapanel.com, *.crossmediapanel.com, crowdcalling.google, dataliberation.org, *.dataliberation.org, datasetsearch.research.google.com, dg-meta.video.google.com, digitalassetlinks.org, *.digitalassetlinks.org, discover.google.com, *.discover.google.com, domains.google, *.domains.google, duetai.google, *.duetai.google, earlydays.google, *.earlydays.google, engineering.google, *.engineering.google, fastlane.ci, floonet.goog, *.floonet.goog, gapi.waze.com, gmbads.gle, *.gmbads.gle, go-lang.com, *.go-lang.com, go-lang.net, *.go-lang.net, go-lang.org, *.go-lang.org, golang.com, *.golang.com, golang.net, *.golang.net, golang.org, *.golang.org, golang.google.cn, *.golang.google.cn, googleblog.com, *.googleblog.com, googlecert.net, *.googlecert.net, googlestore.com, www.googlestore.com, grow.google, *.grow.google, g.dev, *.g.dev, g.page, *.g.page, hey.gle, *.hey.gle, ok.gle, *.ok.gle, hats.goog, *.hats.goog, iamremarkable.org, www.iamremarkable.org, identityplatform.google, *.identityplatform.google, *.global.identityplatform.google, *.staging-global.identityplatform.google, *.staging-qual-global.identityplatform.google, *.autopush-global.identityplatform.google, *.autopush-qual-global.identityplatform.google, lanternal.com, *.lanternal.com, lers.google, nel.goog, *.nel.goog, nomulus.foo, *.nomulus.foo, notebooklm.google, ordering.page, *.ordering.page, macservice.goog, *.macservice.goog, makersuite.google, *.makersuite.google, pagespeed.web.dev, payment.goog, *.payment.goog, picasaweb.com, *.picasaweb.com, picasaweb.net, *.picasaweb.net, picasaweb.org, *.picasaweb.org, pixate.com, www.pixate.com, pki.goog, *.pki.goog, play.space, *.play.space, privacysandbox.google.com, *.privacysandbox.google.com, projectgomie.google, *.projectgomie.google, rbm.goog, *.rbm.goog, registry-qa.google, www.registry-qa.google, registry-sandbox.google, www.registry-sandbox.google, registry.google, www.registry.google, research.youtube, *.research.youtube, savethedate.foo, *.savethedate.foo, share.google, *.share.google, songwriters.youtube, *.songwriters.youtube, source.bazel.build, *.source.bazel.build, support.registry-qa.google, support.registry-sandbox.google, support.registry.google, sprayscape.com, www.sprayscape.com, tfhub.dev, *.tfhub.dev, thegooglestore.com, www.thegooglestore.com, tiltbrush.com, *.tiltbrush.com, travel.google, *.travel.google, webmproject.org, *.webmproject.org, issues.webmproject.org, *.issues.webmproject.org, webpkgcache.com, *.webpkgcache.com, workinxr.dev, *.workinxr.dev, xn--ngstr-lra8j.com, *.xn--ngstr-lra8j.com, xplr.co, *.xplr.co, zynamics.com, *.zynamics.com, app-ads-services.com, *.app-ads-services.com
Info::
Certificate is issued by a trusted CA
Got: CN=WR2,O=Google Trust Services,C=US

HTTP/2 provides multiplexing and header compression for better performance.

Why this matters

HTTP/1.1 forces the browser to make sequential requests, multiplying latency on every page.

Learn more

HTTP/2 (and HTTP/3) multiplex many requests over a single connection, eliminating head-of-line blocking. HTTP/1.1 forces the browser to either queue requests or open many parallel connections — both worse. Most modern web servers support HTTP/2 with one config line.

Source: MDN Web Docs

Connection
Protocol
TLS 1.3
Cipher Suite
TLS_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=misc-sni.google.comIssuer CN=WR2,O=Google Trust Services,C=USValid 2026-03-30T08:35:49Z → 2026-06-22T08:35:48ZExpires in 61 days SANs misc-sni.google.com, *.aiplatform-notebook.cloud.google.com, *.aiplatform-training.cloud.google.com, *.backupdr.cloud.google.com, *.backupdr.cloud.google, *.backupdr-staging.cloud.google.com, *.backupdr-staging.cloud.google, *.backupdr-autopush.cloud.google.com, *.backupdr-autopush.cloud.google, *.backupdr-dev.cloud.google.com, *.backupdr-dev.cloud.google, *.backupdr-sandbox.cloud.google.com, *.backupdr-sandbox.cloud.google, *.brocaproject.com, brocaproject.com, *.composer.cloud.google.com, *.composer.cloud.google, *.composer-staging.cloud.google.com, *.composer-staging.cloud.google, *.composer-qa.cloud.google.com, *.composer-qa.cloud.google, *.composer-dev.cloud.google.com, *.composer-dev.cloud.google, *.datalab.cloud.google.com, *.datafusion.cloud.google.com, *.datafusion.cloud.google, *.datafusion-staging.cloud.google.com, *.datafusion-staging.cloud.google, *.datafusion-dev.cloud.google.com, *.datafusion-dev.cloud.google, *.datafusion-api.cloud.google.com, *.datafusion-api.cloud.google, *.datafusion-api-staging.cloud.google.com, *.datafusion-api-staging.cloud.google, *.datafusion-api-dev.cloud.google.com, *.datafusion-api-dev.cloud.google, *.dataplex.cloud.google.com, *.dataplex-staging.cloud.google.com, *.dataplex-dev.cloud.google.com, *.dataproc.cloud.google.com, *.dataproc.cloud.google, *.dataproc-image-staging.cloud.google.com, *.dataproc-image-staging.cloud.google, *.dataproc-staging.cloud.google.com, *.dataproc-staging.cloud.google, *.dataproc-test.cloud.google.com, *.dataproc-test.cloud.google, *.earthengine.google.co.in, *.earthengine.google.com, *.fiber.google.com, *.gateway.dev, *.de.gateway.dev, *.ew.gateway.dev, *.uc.gateway.dev, *.global.accountverification.cloud.google, *.staging-global.accountverification.cloud.google, *.autopush-global.accountverification.cloud.google, *.google-syndication.com, *.dev.google-syndication.com, *.staging.google-syndication.com, *.googleacquisitionmigration.com, *.gvt5.com, *.healthcare.cloud.google.com, *.machinelearningtools.cloud.google.com, *.machinelearningtools-staging.cloud.google.com, *.machinelearningtools-autopush.cloud.google.com, *.machinelearningtools-dev.cloud.google.com, *.mapmaker.google.com, *.microhost.google.com, *.notebooks.cloud.google.com, *.notebooks.cloud.google, *.picnik.com, picnik.com, *.pipelines.cloud.google.com, *.podcasts.goog, *.tensorboard.cloud.google.com, *.tensorboard-autopush.cloud.google.com, *.tensorboard-dev.cloud.google.com, *.tensorboard-staging.cloud.google.com, *.tensorboard-test.cloud.google.com, abc.xyz, *.abc.xyz, adsense.com, www.adsense.com, adsensecustomsearchads.com, *.adsensecustomsearchads.com, adsenseformobileapps.com, advertisercommunity.com, *.advertisercommunity.com, cloudyoryx.dev, *.cloudyoryx.dev, eageroryx.dev, *.eageroryx.dev, stage.advertisercommunity.com, *.stage.advertisercommunity.com, de.advertisercommunity.com, *.de.advertisercommunity.com, en.advertisercommunity.com, *.en.advertisercommunity.com, es.advertisercommunity.com, *.es.advertisercommunity.com, fr.advertisercommunity.com, *.fr.advertisercommunity.com, id.advertisercommunity.com, *.id.advertisercommunity.com, it.advertisercommunity.com, *.it.advertisercommunity.com, ja.advertisercommunity.com, *.ja.advertisercommunity.com, pl.advertisercommunity.com, *.pl.advertisercommunity.com, pt.advertisercommunity.com, *.pt.advertisercommunity.com, ru.advertisercommunity.com, *.ru.advertisercommunity.com, th.advertisercommunity.com, *.th.advertisercommunity.com, vi.advertisercommunity.com, *.vi.advertisercommunity.com, zh.advertisercommunity.com, *.zh.advertisercommunity.com, amie.google, *.amie.google, ampcache.com, *.ampcache.com, ampproject.com, *.ampproject.com, ampproject.net, *.ampproject.net, *.recaptcha.ampproject.net, ampproject.org, *.ampproject.org, *.cdn.ampproject.org, androidify.com, *.androidify.com, app.goo.gl, *.app.goo.gl, channel-app.google, console.au.cloud.google, *.au.cloud.google, console.ca.cloud.google, *.ca.cloud.google, console.eu.cloud.google, *.eu.cloud.google, console.eu.cloud.google.com, console.il.cloud.google, *.il.cloud.google, console.in.cloud.google, *.in.cloud.google, console.it.cloud.google, *.it.cloud.google, console.jp.cloud.google, *.jp.cloud.google, console.sa.cloud.google, *.sa.cloud.google, console.uk.cloud.google, *.uk.cloud.google, console.us.cloud.google, *.us.cloud.google, cloud.google, *.cloud.google, colab.research.google.com, code.webrtc.org, bugs.webrtc.org, issues.webrtc.org, *.issues.webrtc.org, chronicle.security, *.chronicle.security, *.backstory.chronicle.security, *.backstory-staging.chronicle.security, chronicleforgood.com, *.chronicleforgood.com, looker.chronicle.security, *.looker.chronicle.security, looker-staging.chronicle.security, *.looker-staging.chronicle.security, chroniclesec.com, *.chroniclesec.com, *.backstory.chroniclesec.com, crossmediapanel.com, *.crossmediapanel.com, crowdcalling.google, dataliberation.org, *.dataliberation.org, datasetsearch.research.google.com, dg-meta.video.google.com, digitalassetlinks.org, *.digitalassetlinks.org, discover.google.com, *.discover.google.com, domains.google, *.domains.google, duetai.google, *.duetai.google, earlydays.google, *.earlydays.google, engineering.google, *.engineering.google, fastlane.ci, floonet.goog, *.floonet.goog, gapi.waze.com, gmbads.gle, *.gmbads.gle, go-lang.com, *.go-lang.com, go-lang.net, *.go-lang.net, go-lang.org, *.go-lang.org, golang.com, *.golang.com, golang.net, *.golang.net, golang.org, *.golang.org, golang.google.cn, *.golang.google.cn, googleblog.com, *.googleblog.com, googlecert.net, *.googlecert.net, googlestore.com, www.googlestore.com, grow.google, *.grow.google, g.dev, *.g.dev, g.page, *.g.page, hey.gle, *.hey.gle, ok.gle, *.ok.gle, hats.goog, *.hats.goog, iamremarkable.org, www.iamremarkable.org, identityplatform.google, *.identityplatform.google, *.global.identityplatform.google, *.staging-global.identityplatform.google, *.staging-qual-global.identityplatform.google, *.autopush-global.identityplatform.google, *.autopush-qual-global.identityplatform.google, lanternal.com, *.lanternal.com, lers.google, nel.goog, *.nel.goog, nomulus.foo, *.nomulus.foo, notebooklm.google, ordering.page, *.ordering.page, macservice.goog, *.macservice.goog, makersuite.google, *.makersuite.google, pagespeed.web.dev, payment.goog, *.payment.goog, picasaweb.com, *.picasaweb.com, picasaweb.net, *.picasaweb.net, picasaweb.org, *.picasaweb.org, pixate.com, www.pixate.com, pki.goog, *.pki.goog, play.space, *.play.space, privacysandbox.google.com, *.privacysandbox.google.com, projectgomie.google, *.projectgomie.google, rbm.goog, *.rbm.goog, registry-qa.google, www.registry-qa.google, registry-sandbox.google, www.registry-sandbox.google, registry.google, www.registry.google, research.youtube, *.research.youtube, savethedate.foo, *.savethedate.foo, share.google, *.share.google, songwriters.youtube, *.songwriters.youtube, source.bazel.build, *.source.bazel.build, support.registry-qa.google, support.registry-sandbox.google, support.registry.google, sprayscape.com, www.sprayscape.com, tfhub.dev, *.tfhub.dev, thegooglestore.com, www.thegooglestore.com, tiltbrush.com, *.tiltbrush.com, travel.google, *.travel.google, webmproject.org, *.webmproject.org, issues.webmproject.org, *.issues.webmproject.org, webpkgcache.com, *.webpkgcache.com, workinxr.dev, *.workinxr.dev, xn--ngstr-lra8j.com, *.xn--ngstr-lra8j.com, xplr.co, *.xplr.co, zynamics.com, *.zynamics.com, app-ads-services.com, *.app-ads-services.comSignature SHA256-RSASerial 6d7d78d2077b540509183fca7589b7b0
Intermediate (CA Certificate)
Subject CN=WR2,O=Google Trust Services,C=USIssuer CN=GTS Root R1,O=Google Trust Services LLC,C=USValid 2023-12-13T09:00:00Z → 2029-02-20T14:00:00ZExpires in 1035 days Signature SHA256-RSASerial 7ff005a07c4cded100ad9d66a5107b98
Intermediate (CA Certificate)
Subject CN=GTS Root R1,O=Google Trust Services LLC,C=USIssuer CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BEValid 2020-06-19T00:00:42Z → 2028-01-28T00:00:42ZExpires in 646 days Signature SHA256-RSASerial 77bd0d6cdb36f91aea210fc4f058d30d
A+
Cookie Security
No cookies set — no cookie security risks
PASS
No cookies set — no cookie security risks
Info::
No cookies set — no cookie security risks

No cookies detected — no cookie security risks to report.

A+
JS Library Vulnerabilities
No known vulnerabilities
PASS
No known vulnerabilities
Info::
No known JavaScript library vulnerabilities detected

No known JavaScript library vulnerabilities detected.

A+
Information Leakage
No exposures
PASS
No exposures
Info::
No security.txt found
Consider adding a security.txt at /.well-known/security.txt.
Info::
No sensitive files exposed

No sensitive files exposed — all paths returned 404.

PathStatusCategoryRisk
/.git/HEAD Not foundVersion Control
/.git/config Not foundVersion Control
/.svn/entries Not foundVersion Control
/.env Not foundConfiguration
/.env.local Not foundConfiguration
/.env.production Not foundConfiguration
/wp-config.php Not foundConfiguration
/.htaccess Not foundConfiguration
/phpinfo.php Not foundDebug
/server-status Not foundDebug
/server-info Not foundDebug
/.well-known/security.txt Not foundSecurity Policy
A+
Email Security
DMARC: reject
PASS
DMARC: reject
Info::
DMARC policy is reject — strongest protection
DMARC
Policy reject — strongest protection Record v=DMARC1; p=reject; rua=mailto:mailauth-reports@google.com
A
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Warning::
Missing Strict-Transport-Security header
HSTS tells browsers to only use HTTPS, preventing SSL stripping attacks.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback