Skip to content
https://www.corriere.it

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
62
GRADE
D
FIX
5
REVIEW
4
PASS
4
INFO
0
Checks
13
4 PASS 4 REVIEW 5 FIX
F
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
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
Info::
Referrer-Policy is properly configured
Got: no-referrer-when-downgrade
Info::
Permissions-Policy is set
Got: unload=()
Critical::
Content-Security-Policy header is missing
CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.
Expected: default-src 'self'
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 not present

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

CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything your users type — including credentials.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies or rewrite the page is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever.

Source: OWASP / MDN

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

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

F
Content Security Policy
Action
No enforcing CSP policy found
FIX
No enforcing CSP policy found
Critical::
No Content-Security-Policy header found
CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.
Expected: default-src 'self'

CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything users type — credentials, payment data, session tokens.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever. Start in Report-Only mode, fix violations, then graduate to enforcing.

Source: OWASP / MDN

F
Subresource Integrity
Action
0 of 52 external resources have SRI
FIX
0 of 52 external resources have SRI
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_most-viewed/v2/index.min.js?v=e01d8221e621174e5181b45880b2cc21
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_ux-scripts-loader/v1/index.min.js?v=1df8735f9be3e65d2f34bea6ae139860
Warning::
External script from js2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js2.corriereobjects.it/volocom/volocom.js?v=20241017
Warning::
External script from www.googletagmanager.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.googletagmanager.com/gtag/js?id=DC-9927244
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_mc_widget_FE/v0/index.min.js?v=92fb1f19356473adb39ab0f82ceb676a
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_weather/v2/index.min.js?v=20241021
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_userauth/v1/index.min.js?v=96465a3ca66616f2c2baeee0a960269e
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //c.amazon-adsystem.com/aax2/apstag.js
Warning::
External script from micro.rubiconproject.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //micro.rubiconproject.com/prebid/dynamic/10814.js
Warning::
External script from static.anonymised.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //static.anonymised.io/light/loader.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_video-manager/v3/index.min.js?v=f64996f5f7ac5c4c7a4d3c60675aa84b
Warning::
External script from cdn.tinypass.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.tinypass.com/api/piano.js?v=1
Warning::
External script from imasdk.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://imasdk.googleapis.com/js/sdkloader/ima3.js?v=1
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_rrme-integration/v1/index.min.js?v=7af891571740eecaf0c4d9bad57cf7db
Warning::
External script from cdn-gl.imrworldwide.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-gl.imrworldwide.com/novms/js/2/nlsSDK600.bundle.min.js
Warning::
External script from cdn-gl.imrworldwide.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-gl.imrworldwide.com/novms/js/2/nlsSDK600.bundle.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_iabtfc2/v5/index.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_adv-injector/v1/index.min.js?v=ec489a9f9e3ecd552b26518c4462f0ef
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_gallery-manager/v2/index.min.js?v=fdaaeab46aebfafaef456ca43e5d5fed
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_features/v2/index.min.js?v=2849a6f9ad12998bfd2045b731bb889d
Warning::
External script from cdn-gl.imrworldwide.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-gl.imrworldwide.com/conf/P550170F9-6641-4F5A-ADCA-C327AF68EBC0.js#name=nlsnInstance&ns=NOLBUNDLE
Warning::
External script from cdn-gl.imrworldwide.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-gl.imrworldwide.com/conf/P07DEB19A-591C-41A4-9748-BDB9A5FC0253.js#name=corriere&ns=NOLBUNDLE
Warning::
External script from static.chartbeat.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.chartbeat.com/js/subscriptions.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_tag-manager/v1/index.min.js?v=834249820d9451f5835629d5281908a1
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js?v=1
Warning::
External script from websdk.appsflyer.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://websdk.appsflyer.com?st=banners&
Warning::
External link from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_adv/v1/distro/css/corriere/home/desktop.css?v=4b7fd3c3927c97d612e06e49e7b32638
Warning::
External link from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_corriere-layout/v2/css/pages/corriere/home_desktop.css?v=09edb54c7a6eb177a115749800891bb1
Warning::
External script from fundingchoicesmessages.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fundingchoicesmessages.google.com/i/pub-1003797122955615?ers=1
Warning::
External script from d1pp3br6kljy5b.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d1pp3br6kljy5b.cloudfront.net/v1/trovatoreImode.js?Expires=1797337725&Key-Pair-Id=K2UK6HKTG5UCXJ&Signature=EkK-ssGyGvKDQLYcM-Bt-euNxyxiQjO-1bCKHdpB96yd2MFSGvijY82RB34eAAy2XKKr6ENdQc1DtdWsMpxR-CbthK~2etKAr3ind3OJ5YAv2EhAMdoKppERt32yPkjIKA-TG1y8Y2WkrOZe7NqV59xHCiTA5Wi6QbaVFdGz6hGRn6c8nkoV1dWL99Ahz7B3vNjzd6fVRJMiUlWU4EfZIIoWSGnurVgV74FFg~MON8MuyhH5eNW1G8TcRdsckElFJ1flzEWEyX4w8wcAymrF3NPGYto~AqJw6A1fdmi2hBIUevZlJX5E8pvNVZQhzAQupI4M0fP8ajAE9l6cxGL2zw__
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_orchestrator/v4/index.legacy.min.js?v=e309cdf6c25ac46d12318e6180b8bd76
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_orchestrator/v4/index.min.js?v=f904f6e9973ccdaa5ef9869ac6362217
Warning::
External script from cdn.cxense.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cxense.com/ari-ci.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_orchestrator/v4/20260330074001734.extra/chunks/3.min.js
Warning::
External script from fundingchoicesmessages.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fundingchoicesmessages.google.com/f/AGSKWxXUPBZhUbRsNukkXad7FfvbUkvYdpVFsD4_Ix9t9pnqAwKPDKaFEcuYG2UaWgd_ehVRIqdInNb4kUxBaldHeJluw0_UcsVA9u4ify7liuuI10y1cvaP34cM4OmnGnS_05jOcrlOPw==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc1NTkyOTYyLDI4MjAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly93d3cuY29ycmllcmUuaXQvIixudWxsLFtbOCwieUVDc0did0xoeEkiXSxbOSwiZW4tVVMiXSxbMTYsIlswLDAsMF0iXSxbMzUsIjE3NzU1OTI5NjIiXSxbMTksIjIiXSxbMTcsIlswXSJdLFsyNCwiIl0sWzI5LCJmYWxzZSJdXV0
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202604020101/pubads_impl.js
Warning::
External script from cdn.sophi.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.sophi.io/assets/demeter/1/stable/3393617370.js?isConsented=false
Warning::
External script from cdn.permutive.app lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.permutive.app/6ccc4e64-d4bc-4642-97b6-db50a75d8a5d-web.js
Warning::
External script from cdn1.anonymised.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn1.anonymised.io/light/bundle.js?v=1.8.52
Warning::
External script from cdn1.anonymised.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn1.anonymised.io/light/auth.js?v=1.8.52
Warning::
External script from config.aps.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://config.aps.amazon-adsystem.com/configs/3692
Warning::
External script from secure.cdn.fastclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //secure.cdn.fastclick.net/js/pubcid/latest/pubcid.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_mc_widget_FE/v0/20260126155348476.extra/chunks/4.7b9c44a0.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_most-viewed/v2/20260325150349170.extra/chunks/42.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_most-viewed/v2/20260325150349170.extra/chunks/30.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_most-viewed/v2/20260325150349170.extra/chunks/31.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_features/v2/20260407082400875.extra/chunks/5914.min.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_cor_features/v2/20260407082400875.extra/chunks/9218.min.js
Warning::
External script from static.chartbeat.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //static.chartbeat.com/js/chartbeat_mab.js
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_tracking-service/v1/distro/corriere/TrackingService.js?v=3ab11c40f25816eb799c2ec042520dc0
Warning::
External script from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_data-tracking/v1/distro/openx/corriere/openx_async.js?v=027932beaf1d8bc579213027d8a6f47a
Warning::
External link from components2.corriereobjects.it lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://components2.corriereobjects.it/rcs_mc_widget_FE/v0/main.css?v=17158e2db4ecd9661dc1f949da3c0a3b
SRI Coverage 0 / 52 of external resources have integrity hashes
TagDomainIntegrity
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>js2.corriereobjects.it Missing
<script>www.googletagmanager.com Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>c.amazon-adsystem.com Missing
<script>micro.rubiconproject.com Missing
<script>static.anonymised.io Missing
<script>components2.corriereobjects.it Missing
<script>cdn.tinypass.com Missing
<script>imasdk.googleapis.com Missing
<script>components2.corriereobjects.it Missing
<script>cdn-gl.imrworldwide.com Missing
<script>cdn-gl.imrworldwide.com Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>cdn-gl.imrworldwide.com Missing
<script>cdn-gl.imrworldwide.com Missing
<script>static.chartbeat.com Missing
<script>components2.corriereobjects.it Missing
<script>securepubads.g.doubleclick.net Missing
<script>websdk.appsflyer.com Missing
<link>components2.corriereobjects.it Missing
<link>components2.corriereobjects.it Missing
<script>fundingchoicesmessages.google.com Missing
<script>d1pp3br6kljy5b.cloudfront.net Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>cdn.cxense.com Missing
<script>components2.corriereobjects.it Missing
<script>fundingchoicesmessages.google.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.sophi.io Missing
<script>cdn.permutive.app Missing
<script>cdn1.anonymised.io Missing
<script>cdn1.anonymised.io Missing
<script>config.aps.amazon-adsystem.com Missing
<script>secure.cdn.fastclick.net Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>static.chartbeat.com Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<link>components2.corriereobjects.it 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
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

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

C
Permissions-Policy
Action
1 directives, 5 missing
REVIEW
1 directives, 5 missing
Info::
unload=() — blocked for all origins
Info::
camera not restricted
Consider adding camera=() to block camera access from embedded content.
Info::
microphone not restricted
Consider adding microphone=() to block microphone access from embedded content.
Info::
geolocation not restricted
Consider adding geolocation=() to block geolocation access from embedded content.
Info::
payment not restricted
Consider adding payment=() to block payment access from embedded content.
Info::
usb not restricted
Consider adding usb=() to block usb access from embedded content.

Raw Header

unload=()

Feature Permissions

Blocked Self Only Unrestricted Not Set
unload Blocked
camera Not Set
microphone Not Set
geolocation Not Set
payment Not Set
usb Not Set
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
C
Known vulnerability matches
Action
6 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
jQuery1.10.2medium3rd party CORS request may execute1.12.0
jQuery1.10.2mediumparseHTML() executes scripts in event handlers2.2.0
jQuery1.10.2lowjQuery 1.x and 2.x are End-of-Life and no longer receiving security updates2.999.999
jQuery1.10.2mediumjQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution3.4.0
jQuery1.10.2mediumpassing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code.3.5.0
jQuery1.10.2mediumRegex in its jQuery.htmlPrefilter sometimes may introduce XSS3.5.0
B
Transport Security
HTTP/3, HSTS, and TLS version analysis
REVIEW
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.
Warning::
Missing Strict-Transport-Security header
HSTS tells browsers to only use HTTPS, preventing SSL stripping attacks.
A+
TLS & Certificates
TLS 1.2, 7 checks passed
PASS
TLS 1.2, 7 checks passed
Info::
TLS 1.2 is used
Got: TLS 1.2
Info::
TLS 1.3 is not negotiated
TLS 1.3 offers improved performance and security. Consider enabling it.
Got: TLS 1.2
Info::
Strong cipher suite is used
Got: TLS_ECDHE_RSA_WITH_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 305 days)
Got: 2027-02-06T23:59:59Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 2 domain(s)
Got: *.corriere.it, corriere.it
Info::
Certificate is issued by a trusted CA
Got: CN=Sectigo Public Server Authentication CA DV R36,O=Sectigo Limited,C=GB

TLS 1.3 offers improved performance and security. Consider enabling it.

Why this matters

TLS 1.3 not in use — connection falls back to 1.2 and pays the extra round-trip.

Learn more

Most clients prefer TLS 1.3 if both sides support it. If your server has TLS 1.3 enabled but it's not being negotiated, check for a downgrade-attack mitigation issue or a misconfigured cipher list. nginx ≥ 1.13.0 and OpenSSL ≥ 1.1.1 support TLS 1.3.

Source: RFC 8446 / Mozilla SSL Config

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.2
Cipher Suite
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=*.corriere.itIssuer CN=Sectigo Public Server Authentication CA DV R36,O=Sectigo Limited,C=GBValid 2026-01-06T00:00:00Z → 2027-02-06T23:59:59ZExpires in 305 days SANs *.corriere.it, corriere.itSignature SHA256-RSASerial 94442eb1c0ad40052238cca1b5ea074e
Intermediate (CA Certificate)
Subject CN=Sectigo Public Server Authentication CA DV R36,O=Sectigo Limited,C=GBIssuer CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GBValid 2021-03-22T00:00:00Z → 2036-03-21T23:59:59ZExpires in 3636 days Signature SHA384-RSASerial 397a66cc2756362e0daa87ca6eabe3b1
Intermediate (CA Certificate)
Subject CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GBIssuer CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=USValid 2021-03-22T00:00:00Z → 2038-01-18T23:59:59ZExpires in 4304 days Signature SHA384-RSASerial d27fbbc1de359e5216ad6149586099c4
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
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback