Skip to content
https://matomo.org

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
79
GRADE
C
FIX
1
REVIEW
4
PASS
7
INFO
0
Checks
12
7 PASS 4 REVIEW 1 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.matomo.cloud lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.matomo.cloud/demo-web.matomo.org/container_bugnCohE.js
Warning::
External script from web.cmp.usercentrics.eu lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://web.cmp.usercentrics.eu/ui/loader.js
Warning::
External script from privacy-proxy.usercentrics.eu lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://privacy-proxy.usercentrics.eu/latest/uc-block.bundle.js
Warning::
External script from web.cmp.usercentrics.eu lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://web.cmp.usercentrics.eu/ui/v/3.116.0/WebSdk.lib.d00a93b7.js
Warning::
External script from web.cmp.usercentrics.eu lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://web.cmp.usercentrics.eu/ui/v/3.116.0/GdprCmpController.c4576b71.js
Warning::
External script from cdn-4.convertexperiments.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn-4.convertexperiments.com/v1/js/10007679-10007863.js//cdn-4.convertexperiments.com/v1/js/12345-67890.js?environment=staging
SRI Coverage 0 / 6 of external resources have integrity hashes
TagDomainIntegrity
<script>cdn.matomo.cloud Missing
<script>web.cmp.usercentrics.eu Missing
<script>privacy-proxy.usercentrics.eu Missing
<script>web.cmp.usercentrics.eu Missing
<script>web.cmp.usercentrics.eu Missing
<script>cdn-4.convertexperiments.com Missing
C
Security Headers
Action
5 of 10 headers properly configured
REVIEW
5 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
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
Info::
Permissions-Policy is set
Got: accelerometer=(), ambient-light-sensor=(), autoplay=(self), battery=(), camera=(), display-capture=(), document-domain=(self), encrypted-media=(), fullscreen=("https://video.matomo.org"), gamepad=(), geolocation=(), gyroscope=(), layout-animations=(), legacy-image-formats=(), magnetometer=(), microphone=(), midi=(), oversized-images=(self), payment=(), picture-in-picture=("https://video.matomo.org"), publickey-credentials-get=(), screen-wake-lock=(), speaker-selection=(), unoptimized-images=(self "https://m.img.org"), sync-xhr=(self), usb=()
Info::
Content-Security-Policy is present
Got: default-src 'none'; form-action 'self' https://login.microsoftonline.com https:/…
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: Apache

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

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

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 'none'; form-action 'self' https://login.microsoftonline.com https://madmimi.com https://www.facebook.com; frame-ancestors 'self' https://*.matomo.cloud https://*.innocraft.cloud http://localhost; base-uri 'self' https://demo-web.matomo.org https://web.innocraft.cloud; connect-src 'self' https://matomo.org https://web.innocraft.cloud https://www.userlike.com https://cdn.plyr.io https://demo-web.matomo.org https://userlike-cdn-widgets.s3-eu-west-1.amazonaws.com wss://chat.userlike.com wss://umd.userlike.com https://api.userlike.com https://video.matomo.org https://api.usercentrics.eu https://consent-api.service.consent.usercentrics.eu https://v1.api.service.cmp.usercentrics.eu https://privacy-proxy.usercentrics.eu https://graphql.usercentrics.eu; script-src 'self' https://cdn-4.convertexperiments.com https://snap.licdn.com https://userlike-cdn-umm.b-cdn.net https://web.innocraft.cloud https://cdn.matomo.cloud https://embed.clickmeeting.com https://madmimi.com https://cdn.shortpixel.ai https://cdnjs.cloudflare.com https://www.youtube.com api.userlike.com https://d3dc1lgancj6l0.cloudfront.net https://userlike-cdn-widgets.s3-eu-west-1.amazonaws.com https://demo-web.matomo.org https://m-img.org 'unsafe-eval' 'unsafe-inline' https://app.usercentrics.eu https://api.usercentrics.eu https://web.cmp.usercentrics.eu https://privacy-proxy.usercentrics.eu; style-src 'self' 'unsafe-inline' https://demo-web.matomo.org https://web.innocraft.cloud https://app.usercentrics.eu; img-src 'self' https://*.matomo.org https://demo-web.matomo.org https://web.innocraft.cloud https://plugins.matomo.org https://qrcode.kaywa.com https://raw.githubusercontent.com https://user-images.githubusercontent.com https://m-img.org https://piwik.org https://matomo.org https://video.matomo.org https://app.usercentrics.eu https://uct.service.usercentrics.eu api.userlike.com https://userlike-cdn-operators.userlike.com userlike-cdn-operators.s3-eu-west-1.amazonaws.com data:; media-src 'self' https://video.matomo.org https://www.matomo.org https://matomo.org blob:; font-src 'self' https://matomo.org https://*.matomo.org https://userlike-cdn-umm.b-cdn.net https://demo-web.matomo.org https://web.innocraft.cloud data: https://github.com https://d3dc1lgancj6l0.cloudfront.net; frame-src 'self' https://www.facebook.com https://play.quickchannel.com https://matomo.clickmeeting.com https://embed.clickmeeting.com https://www.youtube-nocookie.com https://demo.matomo.cloud https://demo-web.matomo.org https://demo2.piwik.org https://demo2.matomo.org https://app.usercentrics.eu https://web.cmp.usercentrics.eu;
Info::
default-src directive is set
Got: default-src 'none'
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' https://cdn-4.convertexperiments.com https://snap.licdn.com https://userlike-cdn-umm.b-cdn.net https://web.innocraft.cloud https://cdn.matomo.cloud https://embed.clickmeeting.com https://madmimi.com https://cdn.shortpixel.ai https://cdnjs.cloudflare.com https://www.youtube.com api.userlike.com https://d3dc1lgancj6l0.cloudfront.net https://userlike-cdn-widgets.s3-eu-west-1.amazonaws.com https://demo-web.matomo.org https://m-img.org 'unsafe-eval' 'unsafe-inline' https://app.usercentrics.eu https://api.usercentrics.eu https://web.cmp.usercentrics.eu https://privacy-proxy.usercentrics.eu
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src 'self' https://cdn-4.convertexperiments.com https://snap.licdn.com https://userlike-cdn-umm.b-cdn.net https://web.innocraft.cloud https://cdn.matomo.cloud https://embed.clickmeeting.com https://madmimi.com https://cdn.shortpixel.ai https://cdnjs.cloudflare.com https://www.youtube.com api.userlike.com https://d3dc1lgancj6l0.cloudfront.net https://userlike-cdn-widgets.s3-eu-west-1.amazonaws.com https://demo-web.matomo.org https://m-img.org 'unsafe-eval' 'unsafe-inline' https://app.usercentrics.eu https://api.usercentrics.eu https://web.cmp.usercentrics.eu https://privacy-proxy.usercentrics.eu
Info::
No wildcard in script source
Info::
object-src falls back to default-src
Info::
base-uri is properly restricted
Got: base-uri 'self' https://demo-web.matomo.org https://web.innocraft.cloud
Info::
frame-ancestors directive is set
Got: frame-ancestors 'self' https://*.matomo.cloud https://*.innocraft.cloud http://localhost
Info::
form-action directive is set
Got: form-action 'self' https://login.microsoftonline.com https://madmimi.com https://www.facebook.com
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 'none'
form-action 'self'https://login.microsoftonline.comhttps://madmimi.comhttps://www.facebook.com
frame-ancestors 'self'https://*.matomo.cloudhttps://*.innocraft.cloudhttp://localhost
base-uri 'self'https://demo-web.matomo.orghttps://web.innocraft.cloud
connect-src 'self'https://matomo.orghttps://web.innocraft.cloudhttps://www.userlike.comhttps://cdn.plyr.iohttps://demo-web.matomo.orghttps://userlike-cdn-widgets.s3-eu-west-1.amazonaws.comwss://chat.userlike.comwss://umd.userlike.comhttps://api.userlike.comhttps://video.matomo.orghttps://api.usercentrics.euhttps://consent-api.service.consent.usercentrics.euhttps://v1.api.service.cmp.usercentrics.euhttps://privacy-proxy.usercentrics.euhttps://graphql.usercentrics.eu
script-src 'self'https://cdn-4.convertexperiments.comhttps://snap.licdn.comhttps://userlike-cdn-umm.b-cdn.nethttps://web.innocraft.cloudhttps://cdn.matomo.cloudhttps://embed.clickmeeting.comhttps://madmimi.comhttps://cdn.shortpixel.aihttps://cdnjs.cloudflare.comhttps://www.youtube.comapi.userlike.comhttps://d3dc1lgancj6l0.cloudfront.nethttps://userlike-cdn-widgets.s3-eu-west-1.amazonaws.comhttps://demo-web.matomo.orghttps://m-img.org'unsafe-eval''unsafe-inline'https://app.usercentrics.euhttps://api.usercentrics.euhttps://web.cmp.usercentrics.euhttps://privacy-proxy.usercentrics.eu
style-src 'self''unsafe-inline'https://demo-web.matomo.orghttps://web.innocraft.cloudhttps://app.usercentrics.eu
img-src 'self'https://*.matomo.orghttps://demo-web.matomo.orghttps://web.innocraft.cloudhttps://plugins.matomo.orghttps://qrcode.kaywa.comhttps://raw.githubusercontent.comhttps://user-images.githubusercontent.comhttps://m-img.orghttps://piwik.orghttps://matomo.orghttps://video.matomo.orghttps://app.usercentrics.euhttps://uct.service.usercentrics.euapi.userlike.comhttps://userlike-cdn-operators.userlike.comuserlike-cdn-operators.s3-eu-west-1.amazonaws.comdata:
media-src 'self'https://video.matomo.orghttps://www.matomo.orghttps://matomo.orgblob:
font-src 'self'https://matomo.orghttps://*.matomo.orghttps://userlike-cdn-umm.b-cdn.nethttps://demo-web.matomo.orghttps://web.innocraft.clouddata:https://github.comhttps://d3dc1lgancj6l0.cloudfront.net
frame-src 'self'https://www.facebook.comhttps://play.quickchannel.comhttps://matomo.clickmeeting.comhttps://embed.clickmeeting.comhttps://www.youtube-nocookie.comhttps://demo.matomo.cloudhttps://demo-web.matomo.orghttps://demo2.piwik.orghttps://demo2.matomo.orghttps://app.usercentrics.euhttps://web.cmp.usercentrics.eu
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 314 days)
Got: 2027-03-01T23:59:59Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 2 domain(s)
Got: *.matomo.org, matomo.org
Info::
Certificate is issued by a trusted CA
Got: CN=Amazon RSA 2048 M01,O=Amazon,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=*.matomo.orgIssuer CN=Amazon RSA 2048 M01,O=Amazon,C=USValid 2026-01-31T00:00:00Z → 2027-03-01T23:59:59ZExpires in 314 days SANs *.matomo.org, matomo.orgSignature SHA256-RSASerial 84f185689cb2ef6df1dba5c040d3f4f
Intermediate (CA Certificate)
Subject CN=Amazon RSA 2048 M01,O=Amazon,C=USIssuer CN=Amazon Root CA 1,O=Amazon,C=USValid 2022-08-23T22:21:28Z → 2030-08-23T22:21:28ZExpires in 1585 days Signature SHA256-RSASerial 77312380b9d6688a33b1ed9bf9ccda68e0e0f
Intermediate (CA Certificate)
Subject CN=Amazon Root CA 1,O=Amazon,C=USIssuer CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\, Inc.,L=Scottsdale,ST=Arizona,C=USValid 2015-05-25T12:00:00Z → 2037-12-31T01:00:00ZExpires in 4271 days Signature SHA256-RSASerial 67f944a2a27cdf3fac2ae2b01f908eeb9c4c6
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: quarantine
PASS
DMARC: quarantine
Info::
DMARC policy is quarantine — good protection
DMARC
Policy quarantine — good protection Record v=DMARC1;p=quarantine;sp=reject;rua=mailto:dmarc-report@matomo.org;ruf=mailto:dmarc-failure@matomo.org;fo=d
A+
Permissions-Policy
26 directives, 0 missing
PASS
26 directives, 0 missing
Info::
accelerometer=() — blocked for all origins
Info::
ambient-light-sensor=() — blocked for all origins
Info::
autoplay=(self)
Info::
battery=() — blocked for all origins
Info::
camera=() — blocked for all origins
Info::
display-capture=() — blocked for all origins
Info::
document-domain=(self)
Info::
encrypted-media=() — blocked for all origins
Info::
fullscreen=("https://video.matomo.org")
Info::
gamepad=() — blocked for all origins
Info::
geolocation=() — blocked for all origins
Info::
gyroscope=() — blocked for all origins
Info::
layout-animations=() — blocked for all origins
Info::
legacy-image-formats=() — blocked for all origins
Info::
magnetometer=() — blocked for all origins
Info::
microphone=() — blocked for all origins
Info::
midi=() — blocked for all origins
Info::
oversized-images=(self)
Info::
payment=() — blocked for all origins
Info::
picture-in-picture=("https://video.matomo.org")
Info::
publickey-credentials-get=() — blocked for all origins
Info::
screen-wake-lock=() — blocked for all origins
Info::
speaker-selection=() — blocked for all origins
Info::
unoptimized-images=(self "https://m.img.org")
Info::
sync-xhr=(self)
Info::
usb=() — blocked for all origins

Raw Header

accelerometer=() ambient-light-sensor=() autoplay=(self) battery=() camera=() display-capture=() document-domain=(self) encrypted-media=() fullscreen=("https://video.matomo.org") gamepad=() geolocation=() gyroscope=() layout-animations=() legacy-image-formats=() magnetometer=() microphone=() midi=() oversized-images=(self) payment=() picture-in-picture=("https://video.matomo.org") publickey-credentials-get=() screen-wake-lock=() speaker-selection=() unoptimized-images=(self "https://m.img.org") sync-xhr=(self) usb=()

Feature Permissions

Blocked Self Only Unrestricted Not Set
accelerometer Blocked
ambient-light-sensor Blocked
autoplay Self Only
battery Blocked
camera Blocked
display-capture Blocked
document-domain Self Only
encrypted-media Blocked
fullscreen ("https://video.matomo.org") (1 origins)
gamepad Blocked
geolocation Blocked
gyroscope Blocked
layout-animations Blocked
legacy-image-formats Blocked
magnetometer Blocked
microphone Blocked
midi Blocked
oversized-images Self Only
payment Blocked
picture-in-picture ("https://video.matomo.org") (1 origins)
publickey-credentials-get Blocked
screen-wake-lock Blocked
speaker-selection Blocked
unoptimized-images (self "https://m.img.org") (1 origins)
sync-xhr Self Only
usb Blocked
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.
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