Skip to content
https://timesofindia.indiatimes.com

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
70
GRADE
C
FIX
4
REVIEW
3
PASS
5
INFO
0
Checks
12
5 PASS 3 REVIEW 4 FIX
D
Security Headers
Action
4 of 10 headers properly configured
FIX
4 of 10 headers properly configured
Warning::
HSTS max-age is too short (86400s, should be ≥ 31536000s)
A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).
Got: max-age=86400 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
Info::
X-Frame-Options is properly configured
Got: SAMEORIGIN
Warning::
Referrer-Policy header is missing
Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.
Expected: strict-origin-when-cross-origin
Warning::
Permissions-Policy header is missing
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
Expected: geolocation=(), camera=(), microphone=()
Info::
Content-Security-Policy is present
Got: frame-ancestors 'self' https://*.timesinternet.in https://*.sli.ke https://econo…
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: AkamaiGHost

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

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

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

Learn more

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

Source: RFC 6797 / hstspreload.org

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

Expected: nosniff
Why this matters

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

Learn more

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

Source: OWASP / MDN

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
Subresource Integrity
Action
0 of 67 external resources have SRI
FIX
0 of 67 external resources have SRI
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=Archivo:400,500|Arimo:400,500|Bitter:400,500|EB+Garamond:400,500|Lato|Libre+Baskervill|Libre+Franklin:400,500|Lora:400,500|Google+Sans:regular,medium:400,500|Material+Icons|Google+Symbols|Merriweather|Montserrat:400,500|Mukta:400,500|Muli:400,500|Nunito:400,500|Open+Sans:400,500,600|Open+Sans+Condensed:400,600|Oswald:500|Playfair+Display:400,500|Poppins:400,500|Raleway:400,500|Roboto:400,500|Roboto+Condensed:400,500|Roboto+Slab:400,500|Slabo+27px|Source+Sans+Pro|Ubuntu:400,500|Volkhov&display=swap
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/92625.003e5bc0.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/74151.1396facd.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/26088.126a13b3.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/24429.307cac93.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/46463.030608ec.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/21182.528c5a1d.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/50827.46a5c3cd.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/ushomedesktop.f3be1477.chunk.css
Warning::
External script from static.growthrx.in lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.growthrx.in/js/v2/web-sdk.js
Warning::
External script from loyalty.joinabound.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://loyalty.joinabound.com/sdk/aboundcash-sdk.js?v=11
Warning::
External script from cdn.mxpnl.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.mxpnl.com/libs/mixpanel-2-latest.min.js
Warning::
External script from scripts.clarity.ms lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scripts.clarity.ms/0.8.59/clarity.js
Warning::
External script from jssocdn.indiatimes.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://jssocdn.indiatimes.com/crosswalk/60/widget/crosswalk.js
Warning::
External script from loyalty.joinabound.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://loyalty.joinabound.com/widget/static/dist/js/main.js
Warning::
External script from www.clarity.ms lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.clarity.ms/tag/omgopi914d
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-FCN624MN68&cx=c&gtm=4e64e1
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/beacon.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/gtm.js?id=GTM-P3PMSJN
Warning::
External script from a.mgid.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://a.mgid.com/mgsensor.js?d=1776295354976
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 assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/prebid/js/til_prebid_new.js?v=25
Warning::
External script from geoapi.indiatimes.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://geoapi.indiatimes.com/?cb=1
Warning::
External script from geoapi.indiatimes.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://geoapi.indiatimes.com/?cb
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?cb=31097815
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/5025
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 cdn.id5-sync.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.id5-sync.com/api/1.0/id5-api.js
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/5025
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 cdn.id5-sync.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.id5-sync.com/api/1.0/id5-api.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/i/23037861279?ers=3
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/AGSKWxXdE0OhwZFDkc7dC8mbJDARN-8qTFHc1i6vnk4Z7m21YyTaMXXHyD0wNhaP4nEYh7dSEJLMdir00j72MDl9Riv3KOX3Gf9BRFYd3lVS3JOiLD2Cz7g8OayfXW1c1ajiectRiPrNHQ==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2Mjk1MzU1LDc1NDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly90aW1lc29maW5kaWEuaW5kaWF0aW1lcy5jb20vdXMiLG51bGwsW1s4LCJXUVNqS3RrRVlpTSJdLFs5LCJlbi1VUyJdLFsxOCwiW1tbbnVsbCwxMDI4XV1dIl0sWzM1LCIxNzc2Mjk1MzU1Il0sWzE5LCIyIl0sWzI0LCIiXSxbMjUsIltbOTUzNDAyNTMsOTUzNDAyNTVdXSJdLFsyOSwiZmFsc2UiXV1d
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/AGSKWxXk03bjmM1isiRUerYg5aj7GgpMNQafqucf-0jGKuwmGfa6RcHDyRRuWy5kzm8h3E5BXks_QY3HbV6PWKrmIeXYL1M7PMXQohNr_dE0p-N6yqFNxm0Rvagyc5AGpMwqBmTMB857pg==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2Mjk1MzU1LDkxNDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzcsMTFdXSwiaHR0cHM6Ly90aW1lc29maW5kaWEuaW5kaWF0aW1lcy5jb20vdXMiLG51bGwsW1s4LCJXUVNqS3RrRVlpTSJdLFs5LCJlbi1VUyJdLFsxOCwiW1tbbnVsbCwxMDI4XV1dIl0sWzM1LCIxNzc2Mjk1MzU1Il0sWzE5LCIyIl0sWzI0LCIiXSxbMjUsIltbOTUzNDAyNTMsOTUzNDAyNTVdXSJdLFsyOSwiZmFsc2UiXSxbMTMsIltcIkRCQUJMfkJWUXFBQUFBQWdcIixbWzcsWzE3NzYyOTUzNTUsNzg2MTI1MDAwXV1dXSJdXV0
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/google-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 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 cdn.id5-sync.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.id5-sync.com/api/1.0/esp.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/gh/prebid/shared-id/pubcid.js/docs/pubcid.min.js
Warning::
External script from tags.crwdcntrl.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.crwdcntrl.net/lt/c/16589/sync.min.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 static.criteo.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.criteo.net/js/ld/publishertag.ids.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 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 agi-static.indiatimes.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://agi-static.indiatimes.com/cms-common/ibeat.min.js
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/29780.ac468461.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/Socials.88001305.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/DropDownLoader.4f9a7e23.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/66241.9178be11.chunk.css
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/WithBreakingNews.5b3adbdb.chunk.css
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/AGSKWxUxEQaC_z0MhEhWhbxF1BbRvFFayhH6jLoX0QkfTSlsFwRAM3mtvaoja8M9KdsarVuZ5h_j57bFy6kzOptlrtfOlosnLCydYVw1mRRVrTB1PwxCEvV2XKvtUul25HtnaXvitg_kIg==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2Mjk1MzU4LDY2NDAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzcsMTEsNl0sbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLG51bGwsMV0sImh0dHBzOi8vdGltZXNvZmluZGlhLmluZGlhdGltZXMuY29tL3VzIixudWxsLFtbOCwiV1FTakt0a0VZaU0iXSxbOSwiZW4tVVMiXSxbMTgsIltbW251bGwsMTAyOF1dXSJdLFszNSwiMTc3NjI5NTM1NSJdLFsxOSwiMiJdLFsyNCwiIl0sWzI1LCJbWzk1MzQwMjUzLDk1MzQwMjU1XV0iXSxbMjksImZhbHNlIl0sWzEzLCJbXCJEQkFCTH5CVlFxQUFBQUFnXCIsW1s3LFsxNzc2Mjk1MzU1LDc4NjEyNTAwMF1dXV0iXV1d
Warning::
External script from ade.clmbtech.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ade.clmbtech.com/cde/data/-1/-1/v6.htm?id=685391~8607454~home_us,685395~7551707~home_us&adtype=2&_v=0&auds=all,hkf&_u=https%3A%2F%2Ftimesofindia.indiatimes.com%2Fus&_t=3&_c=X542i170I449_0&fpc=null&r=D68M467e345&optout=1&exc=null&ct=TSCN~home_us$$SCN~us$$&ver="1.26.0"
Warning::
External script from loyalty.joinabound.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://loyalty.joinabound.com/widget/static/dist/js/tpwidget.js?v=11
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/AGSKWxWlZ_ODoJn3QRKCmkS4LNP7eVLCY_zZcep0levALTgm1GZKznJwq3a1_e4njZ5rknCacUAZWFmKnOaMbSsqANedDpO1VRvzIqo-lsAkwhVOFqTdM7RbGREfCZ_HaGxJRt6KoeV3Dw==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzc2Mjk1MzU4LDg2ODAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzcsMTEsNiw5XSxudWxsLDIsbnVsbCwiZW4iLG51bGwsbnVsbCxudWxsLG51bGwsbnVsbCwxXSwiaHR0cHM6Ly90aW1lc29maW5kaWEuaW5kaWF0aW1lcy5jb20vdXMiLG51bGwsW1s4LCJXUVNqS3RrRVlpTSJdLFs5LCJlbi1VUyJdLFsxOCwiW1tbbnVsbCwxMDI4XV1dIl0sWzM1LCIxNzc2Mjk1MzU1Il0sWzE5LCIyIl0sWzI0LCIiXSxbMjUsIltbOTUzNDAyNTMsOTUzNDAyNTVdXSJdLFsyOSwiZmFsc2UiXSxbMTMsIltcIkRCQUJMfkJWUXFBQUFBQWdcIixbWzcsWzE3NzYyOTUzNTUsNzg2MTI1MDAwXV1dXSJdXV0
Warning::
External link from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/MiniTv.ecf88944.chunk.css
Warning::
External script from static.growthrx.in lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.growthrx.in/js/v2/web-sdk-main.js?v=8.3.3
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?network-code=23037861279
Warning::
External script from geoapi.indiatimes.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://geoapi.indiatimes.com/?cb
Warning::
External script from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/bootstrap-modern_es6_module.4af137aa.js
Warning::
External script from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/15098_es6_module.904b9c13.js
Warning::
External script from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/10610_es6_module.aa01945e.js
Warning::
External script from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/client_es6_module.15d5c310.js
Warning::
External script from assets.toiimg.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.toiimg.com/assets/ushomedesktop_es6_module.a1a56f15.chunk.js
Warning::
External script from static.clmbtech.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.clmbtech.com/ad/commons/js/2658/toi/colombia_v2.js
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
Warning::
External script from static.clmbtech.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.clmbtech.com/ase/2658/3/aa.js
Warning::
External link from loyalty.joinabound.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://loyalty.joinabound.com/widget/static/dist/css/app.css?v=11
SRI Coverage 0 / 67 of external resources have integrity hashes
TagDomainIntegrity
<link>fonts.googleapis.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<script>static.growthrx.in Missing
<script>loyalty.joinabound.com Missing
<script>cdn.mxpnl.com Missing
<script>scripts.clarity.ms Missing
<script>jssocdn.indiatimes.com Missing
<script>loyalty.joinabound.com Missing
<script>www.clarity.ms Missing
<script>www.googletagmanager.com Missing
<script>sb.scorecardresearch.com Missing
<script>www.googletagmanager.com Missing
<script>a.mgid.com Missing
<script>c.amazon-adsystem.com Missing
<script>assets.toiimg.com Missing
<script>geoapi.indiatimes.com Missing
<script>geoapi.indiatimes.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>config.aps.amazon-adsystem.com Missing
<script>secure.cdn.fastclick.net Missing
<script>cdn.id5-sync.com Missing
<script>config.aps.amazon-adsystem.com Missing
<script>secure.cdn.fastclick.net Missing
<script>cdn.id5-sync.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>ads.pubmatic.com Missing
<script>connectid.analytics.yahoo.com Missing
<script>cdn.mgaru.dev Missing
<script>cdn.id5-sync.com Missing
<script>cdn.jsdelivr.net Missing
<script>tags.crwdcntrl.net Missing
<script>dmp.im-apps.net Missing
<script>static.criteo.net Missing
<script>oa.openxcdn.net Missing
<script>invstatic101.creativecdn.com Missing
<script>agi-static.indiatimes.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<link>assets.toiimg.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>ade.clmbtech.com Missing
<script>loyalty.joinabound.com Missing
<script>fundingchoicesmessages.google.com Missing
<link>assets.toiimg.com Missing
<script>static.growthrx.in Missing
<script>securepubads.g.doubleclick.net Missing
<script>geoapi.indiatimes.com Missing
<script>assets.toiimg.com Missing
<script>assets.toiimg.com Missing
<script>assets.toiimg.com Missing
<script>assets.toiimg.com Missing
<script>assets.toiimg.com Missing
<script>static.clmbtech.com Missing
<script>accounts.google.com Missing
<script>static.clmbtech.com Missing
<link>loyalty.joinabound.com 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
Permissions-Policy
Action
No header set
FIX
No header set
Warning::
No Permissions-Policy header
Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

No Permissions-Policy header set.

Without this header, embedded iframes can request access to sensitive device features.

Suggested header
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
B
Content Security Policy
3 of 10 CSP checks passed
REVIEW
3 of 10 CSP checks passed
Info::
Raw CSP policy
Got: frame-ancestors 'self' https://*.timesinternet.in https://*.sli.ke https://economictimes.indiatimes.com https://navbharattimes.indiatimes.com https://m.timesofindia.com https://m.economictimes.com https://gadgetsnow.com https://www.gadgetsnow.com https://gadgetsnow.indiatimes.com https://www.google.com https://google.com https://static-toiimg-com.cdn.ampproject.org https://m-timesofindia-com.cdn.ampproject.org https://www.newspointapp.com https://timesofindia.indiatimes.com https://auto.timesofindia.com https://timesofindia-indiatimes-com.cdn.ampproject.org https://vijaykarnataka.com https://*.samayam.com https://*.iamgujarat.com https://*.indiatimes.com https://toireviews.com https://*.toireviews.com ; upgrade-insecure-requests;
Warning::
default-src directive is missing
default-src provides a fallback for other directives. Set it to restrict default resource loading.
Expected: default-src 'self'
Info::
No script-src or default-src to check for 'unsafe-inline'
Info::
No script-src or default-src to check for 'unsafe-eval'
Info::
No script-src or default-src to check for wildcard
Info::
object-src falls back to default-src
Warning::
base-uri directive is missing
Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.
Expected: base-uri 'self'
Info::
frame-ancestors directive is set
Got: frame-ancestors 'self' https://*.timesinternet.in https://*.sli.ke https://economictimes.indiatimes.com https://navbharattimes.indiatimes.com https://m.timesofindia.com https://m.economictimes.com https://gadgetsnow.com https://www.gadgetsnow.com https://gadgetsnow.indiatimes.com https://www.google.com https://google.com https://static-toiimg-com.cdn.ampproject.org https://m-timesofindia-com.cdn.ampproject.org https://www.newspointapp.com https://timesofindia.indiatimes.com https://auto.timesofindia.com https://timesofindia-indiatimes-com.cdn.ampproject.org https://vijaykarnataka.com https://*.samayam.com https://*.iamgujarat.com https://*.indiatimes.com https://toireviews.com https://*.toireviews.com
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

default-src provides a fallback for other directives. Set it to restrict default resource loading.

Expected: default-src 'self'
Why this matters

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

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

Expected: base-uri 'self'
Why this matters

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

Learn more

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

Source: MDN CSP

form-action restricts where forms can submit data, preventing form hijacking.

Expected: form-action 'self'
Why this matters

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

Parsed Policy

frame-ancestors 'self'https://*.timesinternet.inhttps://*.sli.kehttps://economictimes.indiatimes.comhttps://navbharattimes.indiatimes.comhttps://m.timesofindia.comhttps://m.economictimes.comhttps://gadgetsnow.comhttps://www.gadgetsnow.comhttps://gadgetsnow.indiatimes.comhttps://www.google.comhttps://google.comhttps://static-toiimg-com.cdn.ampproject.orghttps://m-timesofindia-com.cdn.ampproject.orghttps://www.newspointapp.comhttps://timesofindia.indiatimes.comhttps://auto.timesofindia.comhttps://timesofindia-indiatimes-com.cdn.ampproject.orghttps://vijaykarnataka.comhttps://*.samayam.comhttps://*.iamgujarat.comhttps://*.indiatimes.comhttps://toireviews.comhttps://*.toireviews.com
upgrade-insecure-requests
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
security.txt
Action
Expired (2025-03-31T06:30:00.000Z) — update Expires field
REVIEW

security.txt

Contact: mailto:responsible-disclosure@timesinternet.in
Expires: 2025-03-31T06:30:00.000Z
A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_256_GCM_SHA384
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 68 days)
Got: 2026-06-23T04:18:22Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 100 domain(s)
Got: agri-preprod.economictimes.indiatimes.com, agri.economictimes.indiatimes.com, ai-stage.etmasterclass.com, ai.etmasterclass.com, api-newscard.indiatimes.com, api-newscard.timesofindia.com, autolytics-cms.economictimes.indiatimes.com, b2b-cms.economictimes.indiatimes.com, bengali.economictimes.com, bollywood.indiatimes.com, builder.timesinternet.in, centralised-panel.economictimes.com, cfsummit.vconfex.com, chemicals-preprod.economictimes.indiatimes.com, chemicals.economictimes.indiatimes.com, ciosea-cms.economictimes.indiatimes.com, ciosea-stage.economictimes.indiatimes.com, ciosea.economictimes.indiatimes.com, ciosea.vconfex.com, crypto-preprod.economictimes.indiatimes.com, crypto.economictimes.indiatimes.com, denmarkdocument.timesinternet.in, etagriculture.com, etchemicals.in, etcryptoworld.com, etinfra.com, etmailapi.economictimes.com, etpay.economictimes.indiatimes.com, etpetrochem.com, etsmesummit.com, etsmesummits.co.in, etsmesummits.com, etsmesummits.in, etsmesummits.net.in, etsupplychain.in, etsustainability.com, events.shalinamedspace.com, fashion.indiatimes.com, football.indiatimes.com, gujarati.economictimes.com, hindi.economictimes.com, hollywood.indiatimes.com, hrme-cms.economictimes.indiatimes.com, hrme-stage.economictimes.indiatimes.com, hrme.economictimes.indiatimes.com, hrme.vconfex.com, hrsea-cms.economictimes.indiatimes.com, hrsea-stage.economictimes.indiatimes.com, hrsea.economictimes.indiatimes.com, hrsea.vconfex.com, id.economictimes.indiatimes.com, infra-stage.economictimes.indiatimes.com, infra.economictimes.indiatimes.com, infra.vconfex.com, kannada.economictimes.com, m.score.toi.in, m.timesofindia.com, malayalam.economictimes.com, marathi.economictimes.com, movie.indiatimes.com, nbtfeed.indiatimes.com, oauth.economictimes.indiatimes.com, pay-admin.economictimes.indiatimes.com, photo.indiatimes.com, photos.indiatimes.com, smesummits.com, sport.indiatimes.com, sports.indiatimes.com, sso-stage.economictimes.indiatimes.com, support.etportfolio.economictimes.indiatimes.com, sustainability-preprod.economictimes.indiatimes.com, sustainability.economictimes.indiatimes.com, tamil.economictimes.com, tech.indiatimes.com, technology.indiatimes.com, telugu.economictimes.com, timesastro.com, timesjobs.com, timesofindia.com, timesofindia.indiatimes.com, tnl.indiatimes.com, toispastaging.indiatimes.com, tprime.co, trailer.indiatimes.com, trailers.indiatimes.com, video.indiatimes.com, www.ai.etmasterclass.com, www.etinfra.com, www.etsmesummit.com, www.etsmesummits.co.in, www.etsmesummits.com, www.etsmesummits.in, www.etsmesummits.net.in, www.m.timesofindia.com, www.smesummits.com, www.thelearningcurve.ai, www.timesastro.com, www.timesjobs.com, www.timesofindia.com, www.timesofindia.indiatimes.com
Info::
Certificate is issued by a trusted CA
Got: CN=R12,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_256_GCM_SHA384
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=timesofindia.comIssuer CN=R12,O=Let's Encrypt,C=USValid 2026-03-25T04:18:23Z → 2026-06-23T04:18:22ZExpires in 68 days SANs agri-preprod.economictimes.indiatimes.com, agri.economictimes.indiatimes.com, ai-stage.etmasterclass.com, ai.etmasterclass.com, api-newscard.indiatimes.com, api-newscard.timesofindia.com, autolytics-cms.economictimes.indiatimes.com, b2b-cms.economictimes.indiatimes.com, bengali.economictimes.com, bollywood.indiatimes.com, builder.timesinternet.in, centralised-panel.economictimes.com, cfsummit.vconfex.com, chemicals-preprod.economictimes.indiatimes.com, chemicals.economictimes.indiatimes.com, ciosea-cms.economictimes.indiatimes.com, ciosea-stage.economictimes.indiatimes.com, ciosea.economictimes.indiatimes.com, ciosea.vconfex.com, crypto-preprod.economictimes.indiatimes.com, crypto.economictimes.indiatimes.com, denmarkdocument.timesinternet.in, etagriculture.com, etchemicals.in, etcryptoworld.com, etinfra.com, etmailapi.economictimes.com, etpay.economictimes.indiatimes.com, etpetrochem.com, etsmesummit.com, etsmesummits.co.in, etsmesummits.com, etsmesummits.in, etsmesummits.net.in, etsupplychain.in, etsustainability.com, events.shalinamedspace.com, fashion.indiatimes.com, football.indiatimes.com, gujarati.economictimes.com, hindi.economictimes.com, hollywood.indiatimes.com, hrme-cms.economictimes.indiatimes.com, hrme-stage.economictimes.indiatimes.com, hrme.economictimes.indiatimes.com, hrme.vconfex.com, hrsea-cms.economictimes.indiatimes.com, hrsea-stage.economictimes.indiatimes.com, hrsea.economictimes.indiatimes.com, hrsea.vconfex.com, id.economictimes.indiatimes.com, infra-stage.economictimes.indiatimes.com, infra.economictimes.indiatimes.com, infra.vconfex.com, kannada.economictimes.com, m.score.toi.in, m.timesofindia.com, malayalam.economictimes.com, marathi.economictimes.com, movie.indiatimes.com, nbtfeed.indiatimes.com, oauth.economictimes.indiatimes.com, pay-admin.economictimes.indiatimes.com, photo.indiatimes.com, photos.indiatimes.com, smesummits.com, sport.indiatimes.com, sports.indiatimes.com, sso-stage.economictimes.indiatimes.com, support.etportfolio.economictimes.indiatimes.com, sustainability-preprod.economictimes.indiatimes.com, sustainability.economictimes.indiatimes.com, tamil.economictimes.com, tech.indiatimes.com, technology.indiatimes.com, telugu.economictimes.com, timesastro.com, timesjobs.com, timesofindia.com, timesofindia.indiatimes.com, tnl.indiatimes.com, toispastaging.indiatimes.com, tprime.co, trailer.indiatimes.com, trailers.indiatimes.com, video.indiatimes.com, www.ai.etmasterclass.com, www.etinfra.com, www.etsmesummit.com, www.etsmesummits.co.in, www.etsmesummits.com, www.etsmesummits.in, www.etsmesummits.net.in, www.m.timesofindia.com, www.smesummits.com, www.thelearningcurve.ai, www.timesastro.com, www.timesjobs.com, www.timesofindia.com, www.timesofindia.indiatimes.comSignature SHA256-RSASerial 597f05001425f1dbaecbd187feecff806d7
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
A
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Warning::
HSTS max-age is short: 1 days
HSTS max-age should be at least 1 year (31536000 seconds).
Got: max-age=86400 (expected 31536000)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback