Skip to content
https://corriere.it

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
60
GRADE
D
FIX
6
REVIEW
3
PASS
4
INFO
0
Checks
13
4 PASS 3 REVIEW 6 FIX
F
Security Headers
Action
2 of 10 headers properly configured
FIX
2 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
Warning::
Referrer-Policy has a weak value
Got: unsafe-url 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=()
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

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

Weak Referrer-Policy values leak full URLs (with query params, tokens, IDs) to every third-party resource on the page.

Learn more

Default referrer behavior shares the full referring URL with images, scripts, and other resources from third-party origins. If your URLs contain tokens, session IDs, or user emails (in query strings or paths), every third-party tracker gets them. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter).

Source: MDN Referrer-Policy / 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

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 53 external resources have SRI
FIX
0 of 53 external resources have SRI
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/cx.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_top-search-bar/v2/index.min.js
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/cx.cce.js
Warning::
External script from api-esp.piano.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://api-esp.piano.io/public/sdk/vx/sdk.js?v=xxx&i=206
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=779e5b079a4363cc6a4e2d52ca96b439
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 cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.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_weather/v2/index.min.js?v=20250222
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_cor_menu/v4/index.min.js?v=3d3cef234ebdc1cad00f31a46ffbde6c
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=4a4c235610b5bfc6cf529f3e05ca9a2c
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=bbc6f6de88b0d68edce547d244791541
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 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_mega-menu/v1/index.min.js?v=bc21ef9a3a9dc4f83e7f1dd61b0658d7
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?v=20260415
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=4410598a574f79a828a441372e3188d7
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=bdb9a096fba210be4c1e52b76955059f
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/exts/homepage/home/desktop.css?v=164c7dccd574e1c55412058c08817ab4
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-naz-layout/v1/css/pages/corriere/home/home_desktop.css?v=80704021b3c5e54bd53e4b21f34bee97
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/AGSKWxUCfXVu334HjH-lYCIZs8lOSpMCgyeXpZXduoYyAIvvj11IrJv_zQL2hjqEsK7pe5X6hPk74S8lfOxw6ki3DfsjUV1vGOg3wFxhrl1R3LjdrmlRD1R5TGGPDppF0m0Mm8BjiWgSUg==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2Mjk0MTU1LDkwMDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly93d3cuY29ycmllcmUuaXQvIixudWxsLFtbOCwiV1FTakt0a0VZaU0iXSxbOSwiZW4tVVMiXSxbMTYsIlswLDAsMF0iXSxbMzUsIjE3NzYyOTQxNTUiXSxbMTksIjIiXSxbMTcsIlswXSJdLFsyNCwiIl0sWzI5LCJmYWxzZSJdXV0
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/m202604100101/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.53
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.53
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_most-viewed/v2/20260407134955640.extra/chunks/44.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/20260407134955640.extra/chunks/36.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/20260407134955640.extra/chunks/13.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/20260414132542248.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 cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css?v=1
SRI Coverage 0 / 53 of external resources have integrity hashes
TagDomainIntegrity
<script>cdn.cxense.com Missing
<script>components2.corriereobjects.it Missing
<script>cdn.cxense.com Missing
<script>api-esp.piano.io Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>js2.corriereobjects.it Missing
<script>www.googletagmanager.com Missing
<script>cdn.jsdelivr.net 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>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<script>cdn.tinypass.com Missing
<script>components2.corriereobjects.it 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>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>static.chartbeat.com Missing
<script>components2.corriereobjects.it Missing
<script>components2.corriereobjects.it Missing
<link>cdn.jsdelivr.net Missing
D
Email Security
Action
DMARC: none
FIX
DMARC: none
Warning::
DMARC policy is none — monitoring only
This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.
DMARC
Policy none — monitoring only, does not block spoofing Record v=DMARC1; p=none; fo=1; rua=mailto:dmarc_rua@emaildefense.proofpoint.com; ruf=mailto:dmarc_ruf@emaildefense.proofpoint.com

This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.

Why this matters

DMARC p=none collects reports but doesn't actually block spoofed mail — phishing emails still reach inboxes.

Learn more

DMARC's three policies are p=none (monitor only), p=quarantine (mark as spam), and p=reject (bounce). Most domains start at p=none to gather data, but stay there forever, leaving spoofers unblocked. After 30 days of clean DMARC reports, graduate to p=quarantine, then p=reject.

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
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 69 days)
Got: 2026-06-24T04:17:08Z
Info::
Certificate chain has 2 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=R12,O=Let's Encrypt,C=US

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=R12,O=Let's Encrypt,C=USValid 2026-03-26T04:17:09Z → 2026-06-24T04:17:08ZExpires in 69 days SANs *.corriere.it, corriere.itSignature SHA256-RSASerial 55fa92fee0156157b9ff7c241476547006d
Intermediate (CA Certificate)
Subject CN=R12,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 331 days Signature SHA256-RSASerial c212324b70a9b49171dc40f7e285263c
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