Skip to content
https://elevenlabs.io

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
70
GRADE
C
FIX
4
REVIEW
3
PASS
5
INFO
0
Checks
12
5 PASS 3 REVIEW 4 FIX
F
Security Headers
Action
2 of 10 headers properly configured
FIX
2 of 10 headers properly configured
Warning::
HSTS max-age is too short (1800s, should be ≥ 31536000s)
A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).
Got: max-age=1800; Expected: max-age=31536000; includeSubDomains
Warning::
X-Content-Type-Options header is missing
This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.
Expected: 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: frame-ancestors 'self' https://payload.elevenlabs.io;
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
Warning::
X-Powered-By header reveals technology stack
This header discloses server technology (e.g. Express, PHP), helping attackers target known vulnerabilities. Remove it.
Got: Next.js
Info::
Server header is not present

A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).

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

Short HSTS max-age leaves a downgrade-attack window every time the cache expires — set ≥ 1 year.

Learn more

max-age below 31536000 (1 year) is below industry recommendation. The browser forgets the HSTS policy and re-exposes first-visit downgrade attacks. Set to 63072000 (2 years) and add `includeSubDomains; preload` to qualify for the HSTS preload list.

Source: RFC 6797 / hstspreload.org

This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.

Expected: nosniff
Why this matters

MIME sniffing lets browsers run uploaded files as JavaScript, turning a file upload into an XSS.

Learn more

Setting X-Content-Type-Options: nosniff tells browsers to trust your declared Content-Type instead of guessing. Without it, an attacker who uploads a polyglot file can sometimes get it executed as a script. One header, no downside.

Source: OWASP / MDN

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

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

This header discloses server technology (e.g. Express, PHP), helping attackers target known vulnerabilities. Remove it.

Why this matters

X-Powered-By: PHP/7.4.3 advertises your stack to attackers — disable it.

Learn more

X-Powered-By and similar headers (X-AspNet-Version, X-Runtime) tell attackers which versions to target. Disable in your server/framework config: PHP `expose_php=Off`, ASP.NET `<httpRuntime enableVersionHeader="false">`, Express `app.disable('x-powered-by')`.

Source: OWASP

D
Cookie Security
Action
3 cookies analyzed, 3 checks passed
FIX
3 cookies analyzed, 3 checks passed
Info::
Cookie 'anon_distinct_id' has the Secure flag
Warning::
Cookie 'anon_distinct_id' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Info::
Cookie 'anon_distinct_id' has SameSite=Strict
Critical::
Cookie 'bootstrap_data' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'bootstrap_data' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'bootstrap_data' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'geo_country' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'geo_country' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Info::
Cookie 'geo_country' has SameSite=Strict
3 cookies analyzed 2 critical 4 warnings
NameSecureHttpOnlySameSiteSizeIssues
anon_distinct_idStrict52 B1
bootstrap_data238 B3
geo_countryStrict13 B2
F
Subresource Integrity
Action
0 of 60 external resources have SRI
FIX
0 of 60 external resources have SRI
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/b92d8c44-02720a3d5fd0d0ba.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/42235-8055f0c4d6c663a5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/main-app-c0452bd3f7d66759.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/e18e0d0d-6be6bc436859c204.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/ba3dc10b-e1d04d024612d07e.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/app/global-error-015a9c9490e3be38.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/26634-7d602b9cef98aea9.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/29810-eed09668d77fdf7d.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/65760-477770958514a6d2.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/53923-decb8582bdceac3b.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/74780-c625aa35dd5018b1.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/76394-bda363ac05ee6f1f.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/22938-0573e451263039c0.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/45670-152ad6187c3849db.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/79579-abbcb38b5e62d296.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/68267-e25b0ec92d3edc1b.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/53095-80ae7fca609c9ac1.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/app/(pages)/%5Blocale%5D/layout-5c81cc9f492c389f.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/55491-0d6ab9ace0e377ce.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/80321-f654a43cd5195888.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/1673-411477666e9169e5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/20658-002e805fa53035d0.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/46947-f4601bb07f024151.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/42286-c5db0384592796ae.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/20726-86cbe21d72e9dfe0.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/27886-c9f474d6adf77421.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/6823-e9969cfeb3a67227.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/36507-ef854695c79f4041.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/app/(pages)/%5Blocale%5D/(redesign)/not-found-22e6c9fa0c88d7d6.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/10770-a8fed4906a34f8da.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/69789-45d30a9eed42f2ce.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/4595-8fa4004bb844f984.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/66679-230ce4f5a9223468.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/34924-6181d78e02135da9.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/app/(pages)/%5Blocale%5D/(redesign)/(agents)/layout-2626de0494cfea78.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/79805-f5a9d156ab79617b.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/77222-53dcea4a3ee3dc34.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/26816-d095a779d21a35e9.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/83996-3da0f6c35cea6b10.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/90345-9e3cd33d364a5638.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/28684-dcd0764ce18436d5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/94894-54fe6e7734f316d8.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/45471-a9b6dc75e2429b02.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/73758-47c3dfab89581ec5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/82159-a07b62bdc625ec5c.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/91403-4b8af3d2f65ca853.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/46248-bb9f178a500e8f55.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/68810-ac6c13c66e982afe.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/92923-f21f9c77f1aa4075.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/75678-59558001438f90c1.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/39093-afbfae9b5003aadf.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/32532-098ef0d86c748ce5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/89331-2ae19a502da9f773.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/10978-5937ba658da033d6.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/62770-02ce04b69158599e.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/65606-9988eab527040ebc.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/48570-485b12b877c6c9fc.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/app/(pages)/%5Blocale%5D/(default)/(cms-global-pages)/%5B...slug%5D/page-d58e4df2b9b1a4a5.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/polyfills-42372ed130431b0a.js
Warning::
External script from eleven-public-cdn.elevenlabs.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://eleven-public-cdn.elevenlabs.io/marketing_website/_next/static/chunks/webpack-d7ae2b1ffbecc072.js
SRI Coverage 0 / 60 of external resources have integrity hashes
TagDomainIntegrity
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io Missing
<script>eleven-public-cdn.elevenlabs.io 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
Content Security Policy
2 of 10 CSP checks passed
REVIEW
2 of 10 CSP checks passed
Info::
Raw CSP policy
Got: frame-ancestors 'self' https://payload.elevenlabs.io;
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'
Info::
No script-src or default-src to check for 'unsafe-inline'
Info::
No script-src or default-src to check for 'unsafe-eval'
Info::
No script-src or default-src to check for wildcard
Info::
object-src falls back to default-src
Warning::
base-uri directive is missing
Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.
Expected: base-uri 'self'
Info::
frame-ancestors directive is set
Got: frame-ancestors 'self' https://payload.elevenlabs.io
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

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.

Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.

Expected: base-uri 'self'
Why this matters

Missing base-uri in CSP leaves a base-tag injection attack path open even on otherwise strict policies.

Learn more

A common omission: developers add CSP for script-src and frame-ancestors but forget base-uri. The result is a CSP that looks strict but lets an attacker rewrite every URL on the page via <base href>. Add `base-uri 'self'` to close the gap.

Source: MDN CSP

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

frame-ancestors 'self'https://payload.elevenlabs.io
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 1 contact(s)
REVIEW

security.txt

Contact: mailto:vulnerability_disclosure_program@elevenlabs.io
Expires: 2027-03-01T00:00:00.000Z
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_CHACHA20_POLY1305_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 85 days)
Got: 2026-07-17T15:28:53Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 2 domain(s)
Got: elevenlabs.io, *.elevenlabs.io
Info::
Certificate is issued by a trusted CA
Got: CN=WR3,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_CHACHA20_POLY1305_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=elevenlabs.ioIssuer CN=WR3,O=Google Trust Services,C=USValid 2026-04-18T14:32:58Z → 2026-07-17T15:28:53ZExpires in 85 days SANs elevenlabs.io, *.elevenlabs.ioSignature SHA256-RSASerial 92be5b54a724701101654de6665f8a2
Intermediate (CA Certificate)
Subject CN=WR3,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 1034 days Signature SHA256-RSASerial 7ff005a91568d63abc22861684aa4b5a
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 645 days Signature SHA256-RSASerial 77bd0d6cdb36f91aea210fc4f058d30d
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::
security.txt is present — good practice
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 ExposedSecurity PolicyInfo
A
Email Security
DMARC: quarantine
PASS
DMARC: quarantine
Info::
DMARC policy is quarantine — good protection
DMARC
Policy quarantine — good protection Record v=DMARC1; p=quarantine; rua=mailto:dmarc@elevenlabs.io,mailto:elevenlabs@rua.netcraft.com; ruf=mailto:dmarc@elevenlabs.io,mailto:elevenlabs@ruf.netcraft.com; fo=1;
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::
HSTS max-age is short: 0 days
HSTS max-age should be at least 1 year (31536000 seconds).
Got: max-age=1800 (expected 31536000)
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