Skip to content
https://www.prisma.io

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
66
GRADE
D
FIX
4
REVIEW
3
PASS
5
INFO
0
Checks
12
5 PASS 3 REVIEW 4 FIX
F
Subresource Integrity
Action
0 of 6 external resources have SRI
FIX
0 of 6 external resources have SRI
Warning::
External script from cdn.tolt.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.tolt.io/tolt.js
Warning::
External script from kit.fontawesome.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://kit.fontawesome.com/ad485975d2.js
Warning::
External script from kit.fontawesome.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://kit.fontawesome.com/c1448b716e.js
Warning::
External script from proxyhog.prisma-data.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://proxyhog.prisma-data.net/static/surveys.js?v=1.364.4
Warning::
External script from proxyhog.prisma-data.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://proxyhog.prisma-data.net/static/posthog-recorder.js?v=1.364.4
Warning::
External script from proxyhog.prisma-data.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://proxyhog.prisma-data.net/array/phc_cmc85avbWyuJ2JyKdGPdv7dxXli8xLdWDBPbvIXWJfs/config.js
SRI Coverage 0 / 6 of external resources have integrity hashes
TagDomainIntegrity
<script>cdn.tolt.io Missing
<script>kit.fontawesome.com Missing
<script>kit.fontawesome.com Missing
<script>proxyhog.prisma-data.net Missing
<script>proxyhog.prisma-data.net Missing
<script>proxyhog.prisma-data.net Missing
F
Email Security
Action
No DMARC
FIX
No DMARC
Warning::
No DMARC record found
Without DMARC, email receivers have no policy for handling authentication failures.
DMARC

No DMARC record found

Without DMARC, email receivers have no policy for handling authentication failures from your domain.

Without DMARC, email receivers have no policy for handling authentication failures.

Why this matters

Without DMARC, anyone can send phishing emails using your domain name.

Learn more

DMARC tells receiving mail servers what to do with email that fails SPF/DKIM checks for your domain. With a strict 'p=reject' policy, spoofed emails get bounced; without it they reach the inbox. Domains used in phishing campaigns lose deliverability and brand trust fast.

Source: DMARC.org / NIST

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=()
D
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

No security.txt found at /.well-known/security.txt

B
Security Headers
6 of 10 headers properly configured
REVIEW
6 of 10 headers properly configured
Warning::
HSTS is missing includeSubDomains
Without includeSubDomains, subdomains can still be accessed over HTTP.
Got: max-age=63072000 Expected: max-age=31536000; includeSubDomains
Info::
X-Content-Type-Options is properly configured
Got: nosniff
Info::
X-Frame-Options is properly configured
Got: SAMEORIGIN
Info::
Referrer-Policy is properly configured
Got: 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: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdn-…
Warning::
Cross-Origin-Opener-Policy header is missing
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
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: Vercel

Without includeSubDomains, subdomains can still be accessed over HTTP.

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

Without includeSubDomains, a forgotten dev subdomain over HTTP can set malicious cookies that ride to the apex.

Learn more

HSTS without includeSubDomains protects only the exact domain. Cookies set on a non-HSTS subdomain can ride to the apex via cookie-scope attacks. The fix is one directive append. Verify all subdomains support HTTPS first — adding includeSubDomains to a domain with HTTP-only subdomains breaks them.

Source: RFC 6797

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

COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.

Expected: same-origin
Why this matters

COOP isolates your top-level browsing context from cross-origin windows — without it, popup-based side-channel attacks remain possible.

Learn more

Cross-Origin-Opener-Policy: same-origin prevents cross-origin pages from sharing a browsing-context group with yours. This blocks cross-window references that enable Spectre-style timing attacks and tab-nabbing. Required if you want to enable SharedArrayBuffer.

Source: MDN / web.dev

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

C
Content Security Policy
Action
6 of 10 CSP checks passed
REVIEW
6 of 10 CSP checks passed
Info::
Raw CSP policy
Got: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdn-cookieyes.com https://cdn.tolt.io https://unpkg.com https://cdn.jsdelivr.net https://www.youtube.com https://www.youtube-nocookie.com https://tally.so https://va.vercel-scripts.com https://www.googletagmanager.com https://widget.kapa.ai https://www.google.com https://www.gstatic.com https://metrics.kapa.ai https://proxyhog.prisma-data.net https://cdn.cr-relay.com https://app.enzuzo.com/ https://static.ads-twitter.com https://snap.licdn.com https://vercel.live https://58qr5yci46.execute-api.us-east-1.amazonaws.com https://analytics.twitter.com https://t.co https://static.ads-twitter.com https://px.ads.linkedin.com https://snap.licdn.com https://region1.google-analytics.com https://googleads.g.doubleclick.net https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://td.doubleclick.net https://*.fontawesome.com https://raw.githubusercontent.com https://hcaptcha.com https://*.hcaptcha.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://cdn.tolt.io https://vercel.live https://proxyhog.prisma-data.net https://hcaptcha.com https://*.hcaptcha.com; font-src 'self' data: https://fonts.gstatic.com https://vercel.live https://assets.vercel.com https://*.fontawesome.com; img-src 'self' data: http://localhost:3002 http://127.0.0.1:3002 https://www.prisma.io https://prisma.io https://cdn.sanity.io https://prisma.io https://prismalens.vercel.app https://api.producthunt.com https://www.google.com https://www.google.com/s2/favicons https://*.gstatic.com https://pbs.twimg.com/ https://cdn.tolt.io https://cdn-cookieyes.com https://website-prisma.vercel.app https://www.cursor.com/ https://cursor.com/ https://analytics.twitter.com https://t.co https://static.ads-twitter.com https://px.ads.linkedin.com https://snap.licdn.com https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://vercel.live https://vercel.com data: blob: https://td.doubleclick.net https://raw.githubusercontent.com https://*.meetupstatic.com https://www.prisma.io; connect-src 'self' https://api.github.com https://p2zxqf70.api.sanity.io https://www.youtube.com https://cdn.jsdelivr.net https://accelerate-analytics-exporter.prisma-data.net https://www.prisma-status.com https://api.rippling.com https://api.producthunt.com https://*.tally.so https://va.vercel-scripts.com https://www.googletagmanager.com https://www.google.com https://www.gstatic.com https://kapa-widget-proxy-la7dkmplpq-uc.a.run.app https://metrics.kapa.ai https://cdn-cookieyes.com https://log.cookieyes.com https://*.algolia.net https://*.algolianet.com https://proxyhog.prisma-data.net https://directory.cookieyes.com https://api.cr-relay.com https://pagead2.googlesyndication.com https://px.ads.linkedin.com https://internal-t.posthog.com https://vercel.live wss://ws-us3.pusher.com https://react-tweet.vercel.app https://cdn.tolt.io https://58qr5yci46.execute-api.us-east-1.amazonaws.com https://analytics.twitter.com https://t.co https://static.ads-twitter.com https://px.ads.linkedin.com https://snap.licdn.com https://region1.google-analytics.com https://googleads.g.doubleclick.net https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://td.doubleclick.net https://raw.githubusercontent.com https://www.google-analytics.com https://unpkg.com https://proxy.kapa.ai https://hcaptcha.com https://*.hcaptcha.com https://ka-p.fontawesome.com; media-src 'self' https://*.prisma.io https://unpkg.com https://cdn.jsdelivr.net https://www.youtube.com; frame-src 'self' https://www.youtube.com https://youtube.com https://youtube-nocookie.com https://tally.so https://*.tally.so https://www.googletagmanager.com https://www.google.com https://www.gstatic.com https://vercel.live/ https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://td.doubleclick.net https://calculator.prisma.io/ https://ppg-pricing-calculator.vercel.app https://hcaptcha.com https://*.hcaptcha.com; child-src 'self' https://www.youtube.com https://youtube.com https://youtube-nocookie.com https://tally.so https://*.tally.so https://www.googletagmanager.com https://www.google.com https://www.gstatic.com; worker-src 'self'; object-src 'none'; base-uri 'self'; form-action 'self'; frame-ancestors 'self';
Info::
default-src directive is set
Got: 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 'self' 'unsafe-inline' 'unsafe-eval' https://cdn-cookieyes.com https://cdn.tolt.io https://unpkg.com https://cdn.jsdelivr.net https://www.youtube.com https://www.youtube-nocookie.com https://tally.so https://va.vercel-scripts.com https://www.googletagmanager.com https://widget.kapa.ai https://www.google.com https://www.gstatic.com https://metrics.kapa.ai https://proxyhog.prisma-data.net https://cdn.cr-relay.com https://app.enzuzo.com/ https://static.ads-twitter.com https://snap.licdn.com https://vercel.live https://58qr5yci46.execute-api.us-east-1.amazonaws.com https://analytics.twitter.com https://t.co https://static.ads-twitter.com https://px.ads.linkedin.com https://snap.licdn.com https://region1.google-analytics.com https://googleads.g.doubleclick.net https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://td.doubleclick.net https://*.fontawesome.com https://raw.githubusercontent.com https://hcaptcha.com https://*.hcaptcha.com
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdn-cookieyes.com https://cdn.tolt.io https://unpkg.com https://cdn.jsdelivr.net https://www.youtube.com https://www.youtube-nocookie.com https://tally.so https://va.vercel-scripts.com https://www.googletagmanager.com https://widget.kapa.ai https://www.google.com https://www.gstatic.com https://metrics.kapa.ai https://proxyhog.prisma-data.net https://cdn.cr-relay.com https://app.enzuzo.com/ https://static.ads-twitter.com https://snap.licdn.com https://vercel.live https://58qr5yci46.execute-api.us-east-1.amazonaws.com https://analytics.twitter.com https://t.co https://static.ads-twitter.com https://px.ads.linkedin.com https://snap.licdn.com https://region1.google-analytics.com https://googleads.g.doubleclick.net https://pagead2.googlesyndication.com https://googleads.g.doubleclick.net https://td.doubleclick.net https://*.fontawesome.com https://raw.githubusercontent.com https://hcaptcha.com https://*.hcaptcha.com
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 'self'
Info::
frame-ancestors directive is set
Got: frame-ancestors 'self'
Info::
form-action directive is set
Got: 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

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

default-src 'self'
script-src 'self''unsafe-inline''unsafe-eval'https://cdn-cookieyes.comhttps://cdn.tolt.iohttps://unpkg.comhttps://cdn.jsdelivr.nethttps://www.youtube.comhttps://www.youtube-nocookie.comhttps://tally.sohttps://va.vercel-scripts.comhttps://www.googletagmanager.comhttps://widget.kapa.aihttps://www.google.comhttps://www.gstatic.comhttps://metrics.kapa.aihttps://proxyhog.prisma-data.nethttps://cdn.cr-relay.comhttps://app.enzuzo.com/https://static.ads-twitter.comhttps://snap.licdn.comhttps://vercel.livehttps://58qr5yci46.execute-api.us-east-1.amazonaws.comhttps://analytics.twitter.comhttps://t.cohttps://static.ads-twitter.comhttps://px.ads.linkedin.comhttps://snap.licdn.comhttps://region1.google-analytics.comhttps://googleads.g.doubleclick.nethttps://pagead2.googlesyndication.comhttps://googleads.g.doubleclick.nethttps://td.doubleclick.nethttps://*.fontawesome.comhttps://raw.githubusercontent.comhttps://hcaptcha.comhttps://*.hcaptcha.com
style-src 'self''unsafe-inline'https://fonts.googleapis.comhttps://cdn.tolt.iohttps://vercel.livehttps://proxyhog.prisma-data.nethttps://hcaptcha.comhttps://*.hcaptcha.com
font-src 'self'data:https://fonts.gstatic.comhttps://vercel.livehttps://assets.vercel.comhttps://*.fontawesome.com
img-src 'self'data:http://localhost:3002http://127.0.0.1:3002https://www.prisma.iohttps://prisma.iohttps://cdn.sanity.iohttps://prisma.iohttps://prismalens.vercel.apphttps://api.producthunt.comhttps://www.google.comhttps://www.google.com/s2/faviconshttps://*.gstatic.comhttps://pbs.twimg.com/https://cdn.tolt.iohttps://cdn-cookieyes.comhttps://website-prisma.vercel.apphttps://www.cursor.com/https://cursor.com/https://analytics.twitter.comhttps://t.cohttps://static.ads-twitter.comhttps://px.ads.linkedin.comhttps://snap.licdn.comhttps://pagead2.googlesyndication.comhttps://googleads.g.doubleclick.nethttps://vercel.livehttps://vercel.comdata:blob:https://td.doubleclick.nethttps://raw.githubusercontent.comhttps://*.meetupstatic.comhttps://www.prisma.io
connect-src 'self'https://api.github.comhttps://p2zxqf70.api.sanity.iohttps://www.youtube.comhttps://cdn.jsdelivr.nethttps://accelerate-analytics-exporter.prisma-data.nethttps://www.prisma-status.comhttps://api.rippling.comhttps://api.producthunt.comhttps://*.tally.sohttps://va.vercel-scripts.comhttps://www.googletagmanager.comhttps://www.google.comhttps://www.gstatic.comhttps://kapa-widget-proxy-la7dkmplpq-uc.a.run.apphttps://metrics.kapa.aihttps://cdn-cookieyes.comhttps://log.cookieyes.comhttps://*.algolia.nethttps://*.algolianet.comhttps://proxyhog.prisma-data.nethttps://directory.cookieyes.comhttps://api.cr-relay.comhttps://pagead2.googlesyndication.comhttps://px.ads.linkedin.comhttps://internal-t.posthog.comhttps://vercel.livewss://ws-us3.pusher.comhttps://react-tweet.vercel.apphttps://cdn.tolt.iohttps://58qr5yci46.execute-api.us-east-1.amazonaws.comhttps://analytics.twitter.comhttps://t.cohttps://static.ads-twitter.comhttps://px.ads.linkedin.comhttps://snap.licdn.comhttps://region1.google-analytics.comhttps://googleads.g.doubleclick.nethttps://pagead2.googlesyndication.comhttps://googleads.g.doubleclick.nethttps://td.doubleclick.nethttps://raw.githubusercontent.comhttps://www.google-analytics.comhttps://unpkg.comhttps://proxy.kapa.aihttps://hcaptcha.comhttps://*.hcaptcha.comhttps://ka-p.fontawesome.com
media-src 'self'https://*.prisma.iohttps://unpkg.comhttps://cdn.jsdelivr.nethttps://www.youtube.com
frame-src 'self'https://www.youtube.comhttps://youtube.comhttps://youtube-nocookie.comhttps://tally.sohttps://*.tally.sohttps://www.googletagmanager.comhttps://www.google.comhttps://www.gstatic.comhttps://vercel.live/https://pagead2.googlesyndication.comhttps://googleads.g.doubleclick.nethttps://td.doubleclick.nethttps://calculator.prisma.io/https://ppg-pricing-calculator.vercel.apphttps://hcaptcha.comhttps://*.hcaptcha.com
child-src 'self'https://www.youtube.comhttps://youtube.comhttps://youtube-nocookie.comhttps://tally.sohttps://*.tally.sohttps://www.googletagmanager.comhttps://www.google.comhttps://www.gstatic.com
worker-src 'self'
object-src 'none'
base-uri 'self'
form-action 'self'
frame-ancestors 'self'
C
CORS Configuration
Action
Origin: *
REVIEW
Origin: *
Info::
Access-Control-Allow-Origin: * — unrestricted
Any website can read this resource's response. Appropriate for public APIs but not for user-specific content.
Info::
Origin reflection not testable with a single request
Some servers reflect the request Origin header. This requires manual testing with a crafted Origin header.
CORS Configuration Permissive
Allow-Origin *

Any website can read responses from this resource.

HeaderValueStatus
Access-Control-Allow-Origin*

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
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 35 days)
Got: 2026-05-12T22:43:47Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 1 domain(s)
Got: www.prisma.io
Info::
Certificate is issued by a trusted CA
Got: CN=R13,O=Let's Encrypt,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=www.prisma.ioIssuer CN=R13,O=Let's Encrypt,C=USValid 2026-02-11T22:43:48Z → 2026-05-12T22:43:47ZExpires in 35 days SANs www.prisma.ioSignature SHA256-RSASerial 51cee81ee8e80e314a8b11129c35744f05d
Intermediate (CA Certificate)
Subject CN=R13,O=Let's Encrypt,C=USIssuer CN=ISRG Root X1,O=Internet Security Research Group,C=USValid 2024-03-13T00:00:00Z → 2027-03-12T23:59:59ZExpires in 339 days Signature SHA256-RSASerial 5a00f212d8d4b480f3924157ea298305
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
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) not advertised
HTTP/3 eliminates head-of-line blocking. If your CDN supports it, consider enabling it.
Info::
HSTS enabled (base policy)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
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