Skip to content
https://nydailynews.com

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
69
GRADE
D
FIX
5
REVIEW
2
PASS
5
INFO
0
Checks
12
5 PASS 2 REVIEW 5 FIX
F
Security Headers
Action
3 of 10 headers properly configured
FIX
3 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 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: default-src data: 'unsafe-inline' 'unsafe-eval' https:; script-src data: 'unsafe…
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: nginx

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

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

F
Content Security Policy
Action
3 of 10 CSP checks passed
FIX
3 of 10 CSP checks passed
Info::
Raw CSP policy
Got: default-src data: 'unsafe-inline' 'unsafe-eval' https:; script-src data: 'unsafe-inline' 'unsafe-eval' https: blob: *.visualwebsiteoptimizer.com; style-src 'unsafe-inline' https: *.visualwebsiteoptimizer.com app.vwo.com; img-src data: https: blob: *.visualwebsiteoptimizer.com app.vwo.com useruploads.vwo.io; font-src data: https:; connect-src https: data: blob: *.visualwebsiteoptimizer.com app.vwo.com; media-src blob: data: https:; object-src https:; child-src https: data: blob: 'self' *.visualwebsiteoptimizer.com app.vwo.com; upgrade-insecure-requests; block-all-mixed-content;
Info::
default-src directive is set
Got: default-src data: 'unsafe-inline' 'unsafe-eval' https:
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 data: 'unsafe-inline' 'unsafe-eval' https: blob: *.visualwebsiteoptimizer.com
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src data: 'unsafe-inline' 'unsafe-eval' https: blob: *.visualwebsiteoptimizer.com
Info::
No wildcard in script source
Warning::
object-src allows plugin content
Set object-src to 'none' to prevent Flash/Java plugin exploits.
Got: object-src https: Expected: object-src 'none'
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'
Warning::
frame-ancestors directive is missing
frame-ancestors controls who can embed your page, preventing clickjacking. Set it to 'self' or 'none'.
Expected: frame-ancestors 'self'
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 enabled

'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

Set object-src to 'none' to prevent Flash/Java plugin exploits.

Expected: object-src 'none'
Why this matters

object-src open in CSP allows Flash/PDF/plugin embedding — a now-deprecated attack vector that should be explicitly blocked.

Learn more

object-src controls <object>, <embed>, and <applet> elements. Modern sites have no need for plugins; setting `object-src 'none'` blocks an entire class of legacy XSS vectors at zero cost. If your CSP missed it, add the directive.

Source: MDN CSP

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

frame-ancestors controls who can embed your page, preventing clickjacking. Set it to 'self' or 'none'.

Expected: frame-ancestors 'self'
Why this matters

Security gaps expose your site and users to attacks, eroding trust.

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.

Parsed Policy

default-src data:'unsafe-inline''unsafe-eval'https:
script-src data:'unsafe-inline''unsafe-eval'https:blob:*.visualwebsiteoptimizer.com
style-src 'unsafe-inline'https:*.visualwebsiteoptimizer.comapp.vwo.com
img-src data:https:blob:*.visualwebsiteoptimizer.comapp.vwo.comuseruploads.vwo.io
font-src data:https:
connect-src https:data:blob:*.visualwebsiteoptimizer.comapp.vwo.com
media-src blob:data:https:
object-src https:
child-src https:data:blob:'self'*.visualwebsiteoptimizer.comapp.vwo.com
upgrade-insecure-requests
block-all-mixed-content
F
Subresource Integrity
Action
0 of 105 external resources have SRI
FIX
0 of 105 external resources have SRI
Warning::
External script from sb.scorecardresearch.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sb.scorecardresearch.com/c2/6035443/cs.js
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=G-1YHVYC3MQZ&l=MG2DL&cx=c&gtm=4e64h1h1
Warning::
External script from aax-events-cell02-cf.us-west.3px.axp.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://aax-events-cell02-cf.us-west.3px.axp.amazon-adsystem.com/e/dtb/admj?b=JDu6iO9gbY1b6v1rfXBV8vQAAAGdsZOX3QYAAA2vAUFhcHNfdHhuX2JpZDEgICBhcHNfdHhuX2ltcDEgICCQ3G9t&rnd=9402635901221776800734552&pp=9yylmo&p=5vml8g&crid=0-679359
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/gtm.js?id=GTM-NFD2QGD&l=MG2DL
Warning::
External script from de.tynt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://de.tynt.com/deb/v2?id=rc!&dn=AFRC&cc=1&chuav=Not-A.Brand%3Bv%3D24.0.0.0%2C%20Chromium%3Bv%3D146.0.7680.164&chp=Linux&chmob=0&chua=Not-A.Brand%3Bv%3D24%2C%20Chromium%3Bv%3D146&r=&gpp=DBACOe~CQjA2wAQjA2wAEXyIAENCaFgAAAAAEPgACiQAAAOWgIAAcABAACQAGgARQAmABoAEcAK0AZYBAACDgKlAXmA0UBywAAA.IHLQHwAFAANgAwADIAHAAQAAkABaADQAHQAPQAigBMACgAFIALYAXgA0QCOAI8ASgAnQBWgDLAHiAQAAg4CogFSgLzAYyA0UBywA~BQjA2wAQjA2wAEXyIAENCaFAAAAAAIfAAAAAA5aAgABwAEAAJAAaABFACYAGgARwArQBlgEAAIOAqUBeYDRQHLAAAA.IHLQHwAFAANgAwADIAHAAQAAkABaADQAHQAPQAigBMACgAFIALYAXgA0QCOAI8ASgAnQBWgDLAHiAQAAg4CogFSgLzAYyA0UByw~1YN-&gpp_sid=6&pu=https%3A%2F%2Fwww.nydailynews.com%2F
Warning::
External script from launchpad.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad.privacymanager.io/latest/launchpad.bundle.js
Warning::
External script from tagan.adlightning.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tagan.adlightning.com/mng-trib/bl-0d6ee0c-5b463eb9.js
Warning::
External script from tagan.adlightning.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tagan.adlightning.com/mng-trib/b-682065e-27e6b6d7.js
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/marfeel-sdk.es5.js?id=5546
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/marfeel-sdk.js?id=5546
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=G-802ENZKGS6&cx=c&gtm=4e64h1
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/gtm.js?id=GTM-TLFP4R
Warning::
External script from js.matheranalytics.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.matheranalytics.com/s/ma89701/197837700/wp/ml.js?cb=1714
Warning::
External script from thebestpaints.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://thebestpaints.com/files/giwf3sth2qia.v2.js
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJxdjEEOQEAMAD+EEpE9iYMHeAOroYl2RbsRv8dBguNMMgP7mvoghmKwLnEiUVAyTD9gGw1REEZSA6+XtWPBjEmyixJ4TWxGRr0N9xrkl3TaS2ijWuCnbrgunMtdVZZVfgJY2TS/
Warning::
External link from htlbid.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://htlbid.com/v3/nydailynews.com/htlbid.css?ver=6.9.4
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/client-mu-plugins/src/Sitemap/includes/style.css?m=1770753348g
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/mng-digisubs/static/mng-digisubs.styles.css?ver=1776790353
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJx9zEEKAjEMheELGaOo05WIR5nphDbQJmWSInN7iyC4cvH44S0+fDWIKk7iGAuPQO3QSk8sht9WSWCkkPuCsxm5YbQxbfvGKTuIOkc6jvOAf0XbIj5X+1WqLlwI5jWTsQqY7+VDPer9HMJ0mW6ncH0DScM+Tg==
Warning::
External link from fonts.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fonts.googleapis.com/css?family=Noto+Sans%3A400%2C700%2C800%7CNoto+Serif%3A400%2C400i%2C700%2C700i%2C800&display=swap&ver=6.9.4
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/themes/assets/static/css/measuredvibrant.css?m=1776796462g
Warning::
External link from cdn.jsdelivr.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.min.css?ver=5.2.0
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/dfm-ad-mods/dist/css/style.min.css?m=1770753349g
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/client-mu-plugins/src/Auth0/assets/dist/auth0-session-storage.min.js?ver=1.0.4
Warning::
External script from cmp.osano.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cmp.osano.com/16A1AnRt2Fn8i1unj/f15ebf08-7008-40fe-9af3-db96dc3e8266/osano.js
Warning::
External script from ajax.googleapis.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js?ver=3.5.1
Warning::
External script from htlbid.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://htlbid.com/v3/nydailynews.com/htlbid.js?ver=6.9.4
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/client-mu-plugins/src/SSO/assets/js/sso-tools.min.js?m=1770753348g
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/loader-wp/static/loader.min.js?ver=1.6.4
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJydzDEOwjAMQNELkRhUQcSAuAArB0gay3KVuFHtqOX2sCB1YGL90vuwNjfOYigGrXRiUShzzLi4tYFaNB4BhSLhg9MSl5evLH7SA/yQVchlJtae9Iv3zSuasZD61CUX/PvzAYKbPY3L7nWvt1MIl3A9DudhegPeJVHz
Warning::
External script from cdn.auth0.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.auth0.com/js/auth0-spa-js/1.13/auth0-spa-js.production.js?ver=6.9.4
Warning::
External script from accounts.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://accounts.google.com/gsi/client?ver=6.9.4
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJylzLEKgDAMBNAf0gZFWhzE1d+oWkqkjWJS9POtk7jqdHDcPTi2clpJHAlsIXkkhki+nNEjp5GBxQpOr05Fi6TGRHNwauECvhj5QO6Uv0weowQXc/JfK+Fgb2B/oD52lTHatLrR9XIBv8ZxJw==
Warning::
External script from h689.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://h689.nydailynews.com/script.js
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJyNzEEOAiEMheELCY3GQFwYF56EARyKtBBb4vUd3Zm4cPfyku+H5zCxs2ZWGG2uyALpRiYkQz1tG0WhCpQi7VpyvFtCtlV28AMSrybhijIXgSCSVd5W+igIFLTkx99cNCjGr89+QnaZnFreIhc67713/uSO7lBf/8VKYA==
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/3101589387.js?ver=6.9.4
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/mng-digisubs/static/mng-digisubs.articleShare.bundle.js?m=1776796462g
Warning::
External link from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/mu-plugins/jetpack-15.5/modules/widgets/top-posts/style.css?m=1776195303g
Warning::
External script from cds.connatix.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cds.connatix.com/p/plugins/prebid-cache-scraper-3.js
Warning::
External script from az416426.vo.msecnd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://az416426.vo.msecnd.net/scripts/a/ai.0.js
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
Warning::
External script from tagan.adlightning.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tagan.adlightning.com/mng-trib/op.js
Warning::
External script from launchpad-wrapper.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad-wrapper.privacymanager.io/70bb23e5-a2a7-414e-b709-7066b1333c83/launchpad-liveramp.js
Warning::
External script from raven-edge.aditude.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://raven-edge.aditude.io/raven/medianewsgroup-main-vIqAa/library.js
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://c.amazon-adsystem.com/aax2/apstag.js
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-includes/js/wp-emoji-release.min.js?ver=6.9.4
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/3101589387/extensions.js
Warning::
External script from fp.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fp.nydailynews.com/prod/dfm/fp.min.js?2026321
Warning::
External script from g2i.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://g2i.nydailynews.com/prod/dfm/g2i.min.js?2026321
Warning::
External script from engage.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://engage.nydailynews.com/prod/dfm/t8y9347t.min.js?2026321
Warning::
External link from engage.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://engage.nydailynews.com/prod/dfm/t8y9347t.min.css?2026321
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/compass-multimedia-sdk.js?version=2260
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/compass-multimedia-sdk.es5.js?version=2260
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?id=AC_C1oC4B1IQZO5JGoXQLjr2g&experimentType=HeadlineAB&version=esnext
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?id=AC_C1oC4B1IQZO5JGoXQLjr2g&experimentType=HeadlineAB&version=legacy
Warning::
External script from d15kdpgjg3unno.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d15kdpgjg3unno.cloudfront.net/oPS.js?cid=3
Warning::
External script from raven-static.aditude.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://raven-static.aditude.io/prod/1.19.14-y0ptsc/raven.js
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/m202604160201/pubads_impl.js?cb=31097945
Warning::
External script from cdn.tynt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.tynt.com/afrc.js
Warning::
External script from jadserve.postrelease.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://jadserve.postrelease.com/t?ntv_mvi=&ntv_url=https%253A%252F%252Fwww.nydailynews.com%252F
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/3503
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/4011?ers=3
Warning::
External script from ads.pubmatic.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ads.pubmatic.com/AdServer/js/pwt/160835/4933/pwt.js
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?siteId=5546&url=https%3A%2F%2Fwww.nydailynews.com%2F&experimentType=HeadlineAB&lang=es&version=esnext
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?siteId=5546&url=https%3A%2F%2Fwww.nydailynews.com%2F&experimentType=HeadlineAB&lang=es&version=legacy
Warning::
External script from cdn-ima.33across.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-ima.33across.com/ima.js
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 secure.cdn.fastclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://secure.cdn.fastclick.net/js/cnvr-launcher/latest/launcher-stub.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/AGSKWxW1sy0Jh0Bqt2w9nUBNiOUomcjSDokg9RRChvS_kiTCN737ml_ujVdBreVJLV1Ie-x9lIwTwKXHUG-tFIDR5-Be00D-OnnxzhyQIxfED8URwY3kX3vqozCw4KVdcHrZ_H-VRB4G0w==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2ODAwNzMzLDIzNDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly93d3cubnlkYWlseW5ld3MuY29tLyIsbnVsbCxbWzgsIkRzS0dOLXFxZnJRIl0sWzksImVuLVVTIl0sWzE4LCJbW1tudWxsLDQxMDddXV0iXSxbMzUsIjE3NzY4MDA3MzMiXSxbMTksIjIiXSxbMTcsIlswXSJdLFsyNCwiIl0sWzI5LCJmYWxzZSJdXV0
Warning::
External script from invstatic101.creativecdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://invstatic101.creativecdn.com/encrypted-signals/encrypted-tag-g.js
Warning::
External script from oa.openxcdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://oa.openxcdn.net/esp.js
Warning::
External script from connectid.analytics.yahoo.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://connectid.analytics.yahoo.com/connectId-gpt.js
Warning::
External script from dmp.im-apps.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dmp.im-apps.net/secure-signal/provider.js
Warning::
External script from cdn.mgaru.dev lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.mgaru.dev/static/myGaruStandalone.js
Warning::
External script from secure.cdn.fastclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://secure.cdn.fastclick.net/js/cnvr-launcher/latest/launcher.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/AGSKWxVBGoXRpDa18YGsv4nOG-ZNFosq7NEjLNpsqw6_i228sjSC4Xiv0G8MHjPLoeSwX6T7gLW1qlm1c1myyyisxZwhCIH-ap2Jut2GMzWhyOYtOK4QSIwLpUxyelAYPnJWkbMhpsl-PA==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2ODAwNzMzLDYxNDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzcsOV0sbnVsbCwyLG51bGwsImVuIl0sImh0dHBzOi8vd3d3Lm55ZGFpbHluZXdzLmNvbS8iLG51bGwsW1s4LCJEc0tHTi1xcWZyUSJdLFs5LCJlbi1VUyJdLFsxOCwiW1tbbnVsbCw0MTA3XV1dIl0sWzM1LCIxNzc2ODAwNzMzIl0sWzE5LCIyIl0sWzE3LCJbMF0iXSxbMjQsIiJdLFsyOSwiZmFsc2UiXV1d
Warning::
External script from secure.cdn.fastclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://secure.cdn.fastclick.net/js/cnvr-coreid/latest/coreid.min.js
Warning::
External script from az416426.vo.msecnd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://az416426.vo.msecnd.net/scripts/a/ai.0.js
Warning::
External script from connext-fd-gnbrate4fjhjb3f7.z01.azurefd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //connext-fd-gnbrate4fjhjb3f7.z01.azurefd.net/index.js
Warning::
External script from ats-wrapper.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ats-wrapper.privacymanager.io/ats-modules/ef418cbd-4cde-4f15-b109-09a2e2f0c985/ats.js
Warning::
External script from s.ntv.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.ntv.io/serve/satellite.js
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/web-vitals@3/dist/web-vitals.attribution.iife.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/AGSKWxXuO2xk32ZN37ALTunF0QHodxM77pg3CtqZ3GIf9nMir0iabfFY4W5sTV7NzUk6FQ9kYwHpMYmFScxUWnHW3JmSQ6GPOD7PIPh0KeDvepLd4-meSBxrDeaAC3mIvZO3oKmZxGoy2A==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2ODAwNzM3LDY0NTAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzcsOSw2XSxudWxsLDIsbnVsbCwiZW4iLG51bGwsbnVsbCxudWxsLG51bGwsbnVsbCwxXSwiaHR0cHM6Ly93d3cubnlkYWlseW5ld3MuY29tLyIsbnVsbCxbWzgsIkRzS0dOLXFxZnJRIl0sWzksImVuLVVTIl0sWzE4LCJbW1tudWxsLDQxMDddXV0iXSxbMzUsIjE3NzY4MDA3MzMiXSxbMTksIjIiXSxbMTcsIlswXSJdLFsyNCwiIl0sWzI5LCJmYWxzZSJdXV0
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJyVj8EKwjAQRH/IdlG07UU8ePHiR4QmNluT3dDdKPbrjYKiF8HjDPOYGbimqmdSRwrqXXQCxYlGmMCiKIwCLIZ4n0U51hGpHmUBH1gKeUASiDRUXsMbK/qg4chWflHJszKdMAS4OLI8QcJe8+Qe1n9gMPNNcHZffUh9yLbcKoueyzzz+ZXYxe2ybdfNqum6zXgHXmRkBw==
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/mu-plugins/wp-parsely-3.23/build/loader.js?ver=ecf94842061bea03d54b
Warning::
External script from cdn.parsely.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.parsely.com/keys/nydailynews.com/p.js?ver=3.23.1
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/themes/wp-mason/dist/js/ads.min.js?ver=1.0
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/_static/??-eJyVzssKwjAQRuEXsh21aHEh0qWPMTbTmpJJSv5pxbf3ggsXIro98MGhy1i0KZpEIzuLCogBMRCMzbc0gMYUrp0PAaX6WA5Y0A9IhTFlcbM/ZY72hd6LMlIk52EPGlKfjto3ZvkTG8PU+whynRbsCk0Ob5Rd81z5V2IdZ+8kvdxB96u63ta7ZbWphhsUrGyf
Warning::
External script from s.ntv.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.ntv.io/serve/load.js
Warning::
External script from embed.sendtonews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //embed.sendtonews.com/player3/embedcode.js?fk=66dxzmts&cid=6215&offsetx=0&offsety=112&floatwidth=400&floatposition=bottom-right&ver=1.0.0
Warning::
External script from mp.mmvideocdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://mp.mmvideocdn.com/mini-player/prod/voltax_mp.js
Warning::
External script from applepay.cdn-apple.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://applepay.cdn-apple.com/jsapi/1.latest/apple-pay-sdk.js
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/mng-digisubs/static/mng-digisubs.apple.bundle.js?m=1776796462g
Warning::
External script from www.nydailynews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.nydailynews.com/wp-content/plugins/mng-cache-control/Src/assets/dist/mng-cache-control-adminbar.js?ver=0.2.1
Warning::
External script from stats.wp.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://stats.wp.com/e-202617.js
Warning::
External script from cdn.p-n.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.p-n.io/pushly-sdk.min.js?domain_key=P84EtrLeBzpvF7hAQl6MIZdxALcHHTiI6M12&ver=6.9.4
Warning::
External script from delivery.revcontent.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://delivery.revcontent.com/190264/284223/widget.js?ver=6.9.4
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/0.min.js
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/a-05ab.min.js
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/a-05ab.min.js
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/a-05ab.min.js
Warning::
External script from d1y4ng3lozj2yp.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d1y4ng3lozj2yp.cloudfront.net/automatic_signups/v1/sign_me_up.js
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/a-05ab.min.js
Warning::
External script from b-code.liadm.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //b-code.liadm.com/a-05ab.min.js
SRI Coverage 0 / 105 of external resources have integrity hashes
TagDomainIntegrity
<script>sb.scorecardresearch.com Missing
<script>www.googletagmanager.com Missing
<script>aax-events-cell02-cf.us-west.3px.axp.amazon-adsystem.com Missing
<script>www.googletagmanager.com Missing
<script>de.tynt.com Missing
<script>launchpad.privacymanager.io Missing
<script>tagan.adlightning.com Missing
<script>tagan.adlightning.com Missing
<script>sdk.mrf.io Missing
<script>sdk.mrf.io Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>js.matheranalytics.com Missing
<script>thebestpaints.com Missing
<link>www.nydailynews.com Missing
<link>htlbid.com Missing
<link>www.nydailynews.com Missing
<link>www.nydailynews.com Missing
<link>www.nydailynews.com Missing
<link>fonts.googleapis.com Missing
<link>www.nydailynews.com Missing
<link>cdn.jsdelivr.net Missing
<link>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>cmp.osano.com Missing
<script>ajax.googleapis.com Missing
<script>htlbid.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>cdn.auth0.com Missing
<script>accounts.google.com Missing
<script>www.nydailynews.com Missing
<script>h689.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>cdn.sophi.io Missing
<script>www.nydailynews.com Missing
<link>www.nydailynews.com Missing
<script>cds.connatix.com Missing
<script>az416426.vo.msecnd.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>tagan.adlightning.com Missing
<script>launchpad-wrapper.privacymanager.io Missing
<script>raven-edge.aditude.io Missing
<script>c.amazon-adsystem.com Missing
<script>www.nydailynews.com Missing
<script>cdn.sophi.io Missing
<script>fp.nydailynews.com Missing
<script>g2i.nydailynews.com Missing
<script>engage.nydailynews.com Missing
<link>engage.nydailynews.com Missing
<script>sdk.mrf.io Missing
<script>sdk.mrf.io Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>d15kdpgjg3unno.cloudfront.net Missing
<script>raven-static.aditude.io Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.tynt.com Missing
<script>jadserve.postrelease.com Missing
<script>config.aps.amazon-adsystem.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>ads.pubmatic.com Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>cdn-ima.33across.com Missing
<script>secure.cdn.fastclick.net Missing
<script>secure.cdn.fastclick.net Missing
<script>fundingchoicesmessages.google.com Missing
<script>invstatic101.creativecdn.com Missing
<script>oa.openxcdn.net Missing
<script>connectid.analytics.yahoo.com Missing
<script>dmp.im-apps.net Missing
<script>cdn.mgaru.dev Missing
<script>secure.cdn.fastclick.net Missing
<script>fundingchoicesmessages.google.com Missing
<script>secure.cdn.fastclick.net Missing
<script>az416426.vo.msecnd.net Missing
<script>connext-fd-gnbrate4fjhjb3f7.z01.azurefd.net Missing
<script>ats-wrapper.privacymanager.io Missing
<script>s.ntv.io Missing
<script>cdn.jsdelivr.net Missing
<script>fundingchoicesmessages.google.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>cdn.parsely.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>s.ntv.io Missing
<script>embed.sendtonews.com Missing
<script>mp.mmvideocdn.com Missing
<script>applepay.cdn-apple.com Missing
<script>www.nydailynews.com Missing
<script>www.nydailynews.com Missing
<script>stats.wp.com Missing
<script>cdn.p-n.io Missing
<script>delivery.revcontent.com Missing
<script>b-code.liadm.com Missing
<script>b-code.liadm.com Missing
<script>b-code.liadm.com Missing
<script>b-code.liadm.com Missing
<script>d1y4ng3lozj2yp.cloudfront.net Missing
<script>b-code.liadm.com Missing
<script>b-code.liadm.com 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=()
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
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.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
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 39 days)
Got: 2026-05-31T03:32:17Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: ECDSA-SHA384
Info::
Certificate covers 2 domain(s)
Got: nydailynews.com, www.nydailynews.com
Info::
Certificate is issued by a trusted CA
Got: CN=E7,O=Let's Encrypt,C=US

HTTP/2 provides multiplexing and header compression for better performance.

Why this matters

HTTP/1.1 forces the browser to make sequential requests, multiplying latency on every page.

Learn more

HTTP/2 (and HTTP/3) multiplex many requests over a single connection, eliminating head-of-line blocking. HTTP/1.1 forces the browser to either queue requests or open many parallel connections — both worse. Most modern web servers support HTTP/2 with one config line.

Source: MDN Web Docs

Connection
Protocol
TLS 1.3
Cipher Suite
TLS_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=nydailynews.comIssuer CN=E7,O=Let's Encrypt,C=USValid 2026-03-02T03:32:18Z → 2026-05-31T03:32:17ZExpires in 39 days SANs nydailynews.com, www.nydailynews.comSignature ECDSA-SHA384Serial 53532b1cc1e9df97d3f9622023a402e7dfa
Intermediate (CA Certificate)
Subject CN=E7,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 325 days Signature SHA256-RSASerial aa75f1e62b8f0a220966d38bbfd4baa1
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: reject
PASS
DMARC: reject
Info::
DMARC policy is reject — strongest protection
DMARC
Policy reject — strongest protection Record v=DMARC1; p=reject; pct=100
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback