Skip to content
https://vnexpress.net

Security

· 33 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
81
GRADE
B
FIX
7
REVIEW
7
PASS
19
INFO
0
Checks
33
19 PASS 7 REVIEW 7 FIX
D
Content Security Policy
Action
5 of 10 CSP checks passed
FIX
5 of 10 CSP checks passed
Info::
Raw CSP policy
Got: upgrade-insecure-requests; default-src data: 'unsafe-inline' 'unsafe-eval' https:; script-src data: 'unsafe-inline' 'unsafe-eval' https: blob: https://www.googleanalytics.com https://www.google-analytics.com https://www.googleoptimize.com https://optimize.google.com ; style-src data: 'unsafe-inline' https: https://optimize.google.com https://fonts.googleapis.com; img-src data: https: blob: android-webview-video-poster: https://www.google-analytics.com https://www.googletagmanager.com https://optimize.google.com; font-src data: https: https://fonts.gstatic.com; connect-src https: wss: blob:; media-src data: https: blob:; object-src https:; child-src https: data: blob:; form-action https:; frame-ancestors https://*.vnexpress.net https://vnexpress.net
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: https://www.googleanalytics.com https://www.google-analytics.com https://www.googleoptimize.com https://optimize.google.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: https://www.googleanalytics.com https://www.google-analytics.com https://www.googleoptimize.com https://optimize.google.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'
Info::
frame-ancestors directive is set
Got: frame-ancestors https://*.vnexpress.net https://vnexpress.net
Info::
form-action directive is set
Got: form-action https:
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

Parsed Policy

upgrade-insecure-requests
default-src data:'unsafe-inline''unsafe-eval'https:
script-src data:'unsafe-inline''unsafe-eval'https:blob:https://www.googleanalytics.comhttps://www.google-analytics.comhttps://www.googleoptimize.comhttps://optimize.google.com
style-src data:'unsafe-inline'https:https://optimize.google.comhttps://fonts.googleapis.com
img-src data:https:blob:android-webview-video-poster:https://www.google-analytics.comhttps://www.googletagmanager.comhttps://optimize.google.com
font-src data:https:https://fonts.gstatic.com
connect-src https:wss:blob:
media-src data:https:blob:
object-src https:
child-src https:data:blob:
form-action https:
frame-ancestors https://*.vnexpress.nethttps://vnexpress.net
D
Cross-Origin Tab Safety
Action
19 of 21 new-tab link(s) missing rel=noopener
FIX
19 of 21 new-tab link(s) missing rel=noopener
Warning::
19 link(s) open in a new tab without rel=noopener
Without rel="noopener", the destination tab can navigate the original tab via window.opener -- a reverse-tabnabbing phishing primitive. Modern browsers default to noopener since Chrome 88 / Firefox 79 / Safari 12.1, but explicit rel="noopener noreferrer" remains the documented best practice for older browsers, in-app webviews, and security scanners.
D
CSP Inline-Style Readiness
Action
73 inline style attribute(s) detected
FIX
73 inline style attribute(s) detected
Warning::
73 inline style attribute(s) detected
Each `style=""` attribute forces `style-src 'unsafe-inline'` in any Content-Security-Policy, which negates most of CSP's XSS-mitigation value. 73 inline style(s) is high. Affected element types include: section, img, a, div, video. Move styles to a stylesheet; use CSS custom properties for runtime-dynamic values; or adopt a nonce/hash CSP policy. Most teams take the stylesheet path because it's also a maintainability win.
F
Subresource Integrity Adoption
Action
0% SRI adoption (0/77 third-party resources)
FIX
0% SRI adoption (0/77 third-party resources)
Warning::
SRI adoption: 0/77 third-party resources protected (0%)
Of 77 third-party `<script>` / `<link rel=stylesheet>` resources, 0 (0%) declare a Subresource Integrity hash via the `integrity=` attribute. SRI binds the page to the exact bytes of the third-party resource: if the CDN is compromised, attacker-modified bytes won't match the declared hash and the browser refuses to execute the resource. Missing SRI on (first 5 examples): - 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 - https://la2.vnecdn.net/static/device_model_min.js - https://la2.vnecdn.net/static/device_model_min.js - https://www.googletagmanager.com/gtag/js?id=G-8DHKH6QPCD&cx=c&gtm=4e68q1 - https://octopus-stream01-cads.fpt.vn/cdp.js Fix: add `integrity="sha384-..."` and `crossorigin="anonymous"` attributes. Generators: srihash.org, or in-browser via `await crypto.subtle.digest('SHA-384', bytes)`. Cache-bust the resource URL when you change versions, since the integrity hash will mismatch with old cached bytes.
Got: 0% (0/77)
F
Subresource Integrity
Action
0 of 77 external resources have SRI
FIX
0 of 77 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 script from la2.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://la2.vnecdn.net/static/device_model_min.js
Warning::
External script from la2.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://la2.vnecdn.net/static/device_model_min.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-8DHKH6QPCD&cx=c&gtm=4e68q1
Warning::
External script from octopus-stream01-cads.fpt.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://octopus-stream01-cads.fpt.vn/cdp.js
Warning::
External script from www.google-analytics.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google-analytics.com/analytics.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-DQJ7NF9DN2&cx=c&gtm=4e68r0h2
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-57577CKS2C&cx=c&gtm=4e68r0h2
Warning::
External script from www.google-analytics.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google-analytics.com/analytics.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-NMB96XWK
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-N3FNJF
Warning::
External script from s.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.eclick.vn/delivery/inventory.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //s1cdn.vnecdn.net/vnexpress/restruct/j/v1294/eclick/ea4_imp.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/eclick/ea3.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 scdn.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scdn.eclick.vn/delivery/dfp/dfpbrand.js
Warning::
External script from scdn.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scdn.eclick.vn/delivery/dfp/prebid.js
Warning::
External script from scdn.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scdn.eclick.vn/delivery/dfp/ov_pc_vne_home_home.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/blocks/site/1000000_ov.js
Warning::
External script from scdn.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scdn.eclick.vn/delivery/eclick.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/config/category.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/v2_2019/pc/general-file.css
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/vod.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/m202608240101/pubads_impl.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/21928950349?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/AGSKWxX0HOfOrkptchQtZF2M9GwlUb1-FcgNqc3sAdJAVBUrNdjeCsDjXkRC6GjWQwQUaqVOzxuGC9MRulXmaod3HSTXr5T00jhsrOx-ERi8YZEr8jgTV5CYlIUAT9LD6e_M7zR4sFj4sA==?fccs=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLFsxNzg3OTI3MDczLDIxODAwMDAwMF0sbnVsbCxudWxsLG51bGwsW251bGwsWzddXSwiaHR0cHM6Ly92bmV4cHJlc3MubmV0LyIsbnVsbCxbWzgsIklHMEV1bWtvdVgwIl0sWzksImVuLVVTIl0sWzE4LCJbW1tudWxsLDQ4Nl1dXSJdLFszNSwiMTc4NzkyNzA3MyJdLFsyNiwiMTIiXSxbMzMsIjQiXSxbMTksIjEiXSxbMjQsInZuZXhwcmVzcy5uZXQiXSxbMjUsIltbOTUzOTM4NjldXSJdLFsyOSwiZmFsc2UiXV1d
Warning::
External script from scdn.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://scdn.eclick.vn/delivery/asset/357445090/adsbyeclick.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v2/helper/vod/hls.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v2/helper/embed_vod.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v2/helper/vod/video-js.css
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v2/helper/vod/ads.js
Warning::
External script from s.eclick.vn lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.eclick.vn/bad.js
Warning::
External script from la2.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://la2.vnecdn.net/static/device_model_min.js
Warning::
External script from adp.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://adp.vnecdn.net/fopt.js?aid=yzz43vy6tjikths6.1787927072.des&uid=yzz43vy6tjikths6.1787927072.des
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/lazyload.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/wpn.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/modules/home.defer.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/widget/init_myvne.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v2/helper/vod/video.lib.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/simple-scrollbar.min.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/zepto.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/../usi.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/jquery-2.1.4.min.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/myvne/j/v483/myvne_users_redesign.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/evisual/pc/player-pin.css
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/podcast/audio-style-pc.css
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/ldpr/jquery-2.1.4.min.js
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114678-1;5114506-3;5114553-1;5114651-13;5114517-1;5114709-1;5114350-1;5114718-13;5114444-13;5114407-1;5114647-1;5114723-1;5114693-1;5114489-1;5114448-1;5114539-1;5114655-1;5114610-12;5114637-3;5114688-3;5114395-1;5113831-1;5114620-1;5110918-1;5114479-1;5113282-1;5114513-1;5114496-1;5114431-1;5114590-12;5114309-1;5113898-1&
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/jquery.magnific-popup.min.js
Warning::
External script from s1.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1.vnecdn.net/myvne/j/v1/lib/jquery.magnific-popup-1.1.min.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/v2_2019/pc/myvne-2023-PC.css
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 link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/myvne/c/v483/ls/myvne_2019.css
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/uaparse.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/evisual/main.js
Warning::
External link 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/style
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/v3/production/libs/swiper.min.js
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114326-1;5113438-1;5114496-1;5114620-1;5114654-1;5113831-1;5114445-1;5114404-1;5114325-1;5114395-1;5114359-1;5112889-1;5112702-1;5114013-1;5114623-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114714-1;5114712-1;5114691-1;5114670-1;5114604-1;5114667-3;5114477-1;5114495-1;5114511-1;5114479-1;5114431-1;5114067-1;5114304-1;5114616-1;5114652-1;5114298-1;5114149-1;5113793-1;5113282-1;5114461-1;5114281-1;5107733-1;5114302-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114363-1;5114341-1;5114300-1;5114338-1;5114273-1;5113999-1;5114347-1;5114390-1;5114301-1;5114698-1;5110918-1;5114294-1;5114206-1;5114311-1;5114493-1;5114515-1;5114021-1;5113951-1;5113338-1;5113828-1;5113686-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114699-1;5114509-1;5114187-1;5114063-3;5114633-1;5114502-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114263-1;5114571-3;5114547-1;5113802-3;5113955-1;5114305-1;5114191-1;5114128-1;5114501-1;5111981-1;5114333-1;5114130-1;5113940-1;5114204-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114645-1;5113654-1;5114190-1;5111677-1;5113669-1;5112799-1&
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/evisual/podcast/podcast.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/evisual/pc/preview.css
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/video/vvideo_tracking.js
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114470-13;5114701-13;5114372-13;5114275-13;5114264-13;5114242-13;5113886-13;5114313-12;5114023-12;5113583-13;5113410-12&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114324-1;5107733-1;5113659-1;5114342-1;5114313-12;5114201-5;5113620-3;5113963-1&
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114688-3;5114667-3;5113620-3;5114248-3;5110692-3&
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/podcast/wavesurfer.min.js
Warning::
External script from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/j/v9382/podcast/podcast-player.js
Warning::
External script from usi-saas.vnexpress.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://usi-saas.vnexpress.net/widget/index/?cid=5114468-1;5101927-7;5113927-4;5113726-4&
Warning::
External script from la2.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://la2.vnecdn.net/static/adp_banner.js
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/v2_2019/pc/widget-investment-business.css
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/v2_2019/pc/font-Inter.css
Warning::
External link from s1cdn.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s1cdn.vnecdn.net/vnexpress/restruct/c/v4120/v2_2019/pc/box-vne-go.css
Warning::
External script from s.vnecdn.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.vnecdn.net/vnexpress/restruct/j/v575/jquery.3.2.1.min.js
SRI Coverage 0 / 77 of external resources have integrity hashes
TagDomainIntegrity
<link>fonts.googleapis.com Missing
<script>la2.vnecdn.net Missing
<script>la2.vnecdn.net Missing
<script>www.googletagmanager.com Missing
<script>octopus-stream01-cads.fpt.vn Missing
<script>www.google-analytics.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>www.google-analytics.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>s.eclick.vn Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>scdn.eclick.vn Missing
<script>scdn.eclick.vn Missing
<script>scdn.eclick.vn Missing
<script>s1cdn.vnecdn.net Missing
<script>scdn.eclick.vn Missing
<script>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>fundingchoicesmessages.google.com Missing
<script>fundingchoicesmessages.google.com Missing
<script>scdn.eclick.vn Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s.eclick.vn Missing
<script>la2.vnecdn.net Missing
<script>adp.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>usi-saas.vnexpress.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>accounts.google.com Missing
<link>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<link>accounts.google.com Missing
<script>s1cdn.vnecdn.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>usi-saas.vnexpress.net Missing
<script>s1cdn.vnecdn.net Missing
<script>s1cdn.vnecdn.net Missing
<script>usi-saas.vnexpress.net Missing
<script>la2.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<link>s1cdn.vnecdn.net Missing
<script>s.vnecdn.net Missing
F
Email Security
Action
DMARC: none, SPF: -all
FIX
DMARC: none, SPF: -all
Warning::
DMARC policy is none — monitoring only
This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject after monitoring DMARC reports.
Info::
DMARC configured without rua= aggregate reporting
Without rua=, you have no visibility into spoof attempts or auth failures from your own legitimate senders. Add rua=mailto:dmarc@<your-domain> (or a managed inbox at a reporting service).
Info::
SPF ends in -all (hard fail) — strongest setting
Info::
No DKIM detected via common selectors
DKIM signs outbound mail to prove origin. We probed common selectors (default, google, selector1, etc.) without finding a record. If you use a non-standard selector, this is a false negative.
Info::
MTA-STS not configured
MTA-STS forces inbound mail to use TLS, preventing downgrade attacks. Requires both a TXT record at _mta-sts.<domain> and a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt.
Info::
TLS-RPT not configured
TLS-RPT (RFC 8460) lets MTAs report TLS-handshake failures, so you can detect and fix MTA-STS misconfigurations. Add a TXT record at _smtp._tls.<domain>.
Info::
BIMI not configured
BIMI (Brand Indicators for Message Identification) lets supporting clients (Gmail, Apple Mail, Yahoo) display your verified logo next to your messages. Optional but raises trust signals. Requires DMARC at p=quarantine or p=reject to be honored.
DMARC
Policy none — monitoring only, does not block spoofing Record v=DMARC1; p=none;

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

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

Without rua=, you have no visibility into spoof attempts or auth failures from your own legitimate senders. Add rua=mailto:dmarc@<your-domain> (or a managed inbox at a reporting service).

Why this matters

Informational: a Permissions-Policy directive showing feature -> allowed origins.

Source: MDN Permissions-Policy

DKIM signs outbound mail to prove origin. We probed common selectors (default, google, selector1, etc.) without finding a record. If you use a non-standard selector, this is a false negative.

Why this matters

No DKIM signature on outbound mail — receivers can't cryptographically prove the message came from your domain.

Learn more

DKIM signs outbound mail with a private key whose public half lives in DNS at <selector>._domainkey.<domain>. Without DKIM, DMARC alone can't tell legitimate mail from spoofs, and large mailbox providers (Gmail, Yahoo) increasingly require DKIM for inbox placement. Note: this check probes a curated list of common selectors; non-standard selectors produce a false negative.

Source: RFC 6376 / Google + Yahoo 2024 sender requirements

MTA-STS forces inbound mail to use TLS, preventing downgrade attacks. Requires both a TXT record at _mta-sts.<domain> and a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt.

Why this matters

Without MTA-STS, inbound mail can be silently downgraded to plain SMTP by a network attacker.

Learn more

MTA-STS (RFC 8461) tells sending mail servers to use TLS and to refuse delivery if TLS fails. Requires both a TXT record at _mta-sts.<domain> AND a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt. Without it, an active attacker on the network path can strip STARTTLS and read the email in plaintext.

Source: RFC 8461

TLS-RPT (RFC 8460) lets MTAs report TLS-handshake failures, so you can detect and fix MTA-STS misconfigurations. Add a TXT record at _smtp._tls.<domain>.

Why this matters

Without TLS-RPT, you have no visibility into inbound TLS failures — MTA-STS misconfigurations stay hidden until users complain.

Learn more

TLS-RPT (RFC 8460) is the feedback channel for MTA-STS: senders post aggregate reports of TLS-handshake failures to the URI in your _smtp._tls TXT record. Without it, an MTA-STS misconfiguration silently rejects mail and you find out only when someone notices missing email.

Source: RFC 8460

BIMI (Brand Indicators for Message Identification) lets supporting clients (Gmail, Apple Mail, Yahoo) display your verified logo next to your messages. Optional but raises trust signals. Requires DMARC at p=quarantine or p=reject to be honored.

Why this matters

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

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
Security Headers
7 of 10 headers properly configured
REVIEW
7 of 10 headers properly configured
Info::
Strict-Transport-Security is properly configured (consider adding preload)
Got: max-age=31536000; includeSubDomains
Info::
X-Content-Type-Options is properly configured
Got: nosniff
Info::
X-Frame-Options is properly configured
Got: SAMEORIGIN
Info::
Referrer-Policy is properly configured
Got: 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: upgrade-insecure-requests; default-src data: 'unsafe-inline' 'unsafe-eval' https…
Warning::
Cross-Origin-Opener-Policy header is missing
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: vne-qt-fe-lv1-other-4
Info::
Domain is not in the Chrome HSTS preload list (status: unknown)
Submit your domain to hstspreload.org to close the trust-on-first-use gap. Requires a preload-ready HSTS header (max-age=31536000+, includeSubDomains, preload).
Got: unknown

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

Submit your domain to hstspreload.org to close the trust-on-first-use gap. Requires a preload-ready HSTS header (max-age=31536000+, includeSubDomains, preload).

Why this matters

Not in the Chrome preload list — first-time visitors over plain HTTP can be downgraded by a network attacker before HSTS kicks in.

Learn more

The HSTS header only protects users who have already visited the site (TOFU window). Adding your domain to the Chrome preload list closes that gap so HSTS is enforced from the very first connection. Requires a preload-ready header (max-age=31536000+, includeSubDomains, preload) then submission at hstspreload.org. Inclusion ships in the next Chrome release after acceptance.

Source: hstspreload.org

B
WAF / Bot Protection
No WAF detected via response headers
REVIEW
No WAF detected via response headers
Info::
No WAF detected
Response headers don't match any known WAF or bot-management product. Sites exposed to abuse (login, signup, payment) typically benefit from a WAF such as Cloudflare, Akamai, AWS WAF, or Imperva.
C
security.txt
Action
No security.txt file found
REVIEW
No security.txt file found
Info::
No security.txt file found
security.txt (RFC 9116) provides a standardized way for security researchers to report vulnerabilities. Create one at /.well-known/security.txt with at least a Contact field.
Expected: /.well-known/security.txt

security.txt

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

B
Trusted Types (XSS Sink Hardening)
Trusted Types not enabled
REVIEW
Trusted Types not enabled
Info::
Trusted Types not enabled
Trusted Types (CSP3) is a Chrome 83+ defense that requires DOM-XSS sinks (innerHTML, document.write, eval, ...) to receive a typed-and-sanitized value rather than a raw string. Adding `Content-Security-Policy: require-trusted-types-for 'script'; trusted-types default` neutralizes most DOM-XSS even when a payload reaches a sink. Adoption is currently ~0.1% of pages so this is informational; a roll-out usually starts in report-only mode.
C
Permissions-Policy Granularity
Action
No Permissions-Policy header set -- powerful features (camera / microphone / geolocation / payment / USB) default to allow-on-same-origin
REVIEW
No Permissions-Policy header set -- powerful features (camera / microphone / geolocation / payment / USB) default to allow-on-same-origin
Warning::
Permissions-Policy header not set -- features default to allow-on-same-origin
Without a `Permissions-Policy` (or legacy `Feature-Policy`) header, every powerful browser feature defaults to its spec default policy (typically `self`). A third-party iframe injected via XSS or a misconfigured embed can still request access to the user's camera, microphone, geolocation, payment APIs, USB devices, etc. Explicitly deny features the page doesn't need: ``` Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=(), accelerometer=(), gyroscope=() ``` Features the page legitimately uses can stay enabled with `feature=(self)`.
Got: header absent
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
jQuery2.1.4mediumparseHTML() executes scripts in event handlers2.2.0
jQuery2.1.4medium3rd party CORS request may execute3.0.0-beta1
jQuery2.1.4mediumjQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution3.4.0
jQuery2.1.4mediumRegex in its jQuery.htmlPrefilter sometimes may introduce XSS3.5.0
jQuery2.1.4mediumpassing 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
jQuery2.1.4lowjQuery 1.x and 2.x are End-of-Life and no longer receiving security updates2.999.999
A+
TLS & Certificates
TLS 1.3, 8 checks passed
PASS
TLS 1.3, 8 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_CHACHA20_POLY1305_SHA256
Info::
HTTP/2 is negotiated
Got: h2
Info::
OCSP stapling not enabled
Without stapling, the browser performs a separate OCSP roundtrip on first connection -- adding latency and leaking the visited host to the CA. Enable OCSP stapling on your TLS server.
Info::
Certificate is valid (expires in 180 days)
Got: 2027-02-25T09:39:21Z
Info::
Certificate chain has 4 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 6 domain(s)
Got: *.vnexpress.net, owa.vnexpress.net, mail.vnexpress.net, autodiscover.vnexpress.net, www.vnexpress.net, vnexpress.net
Info::
Certificate is issued by a trusted CA
Got: CN=GlobalSign GCC R46 DV TLS CA 2025,O=GlobalSign nv-sa,C=BE

Without stapling, the browser performs a separate OCSP roundtrip on first connection -- adding latency and leaking the visited host to the CA. Enable OCSP stapling on your TLS server.

Why this matters

Without OCSP stapling, every first-time visitor pays an extra OCSP roundtrip — and the CA learns who's visiting your site.

Learn more

OCSP stapling has the server fetch its own revocation status from the CA and attach the signed response to the TLS handshake. Without it, browsers contact the CA directly: extra latency for the user and a privacy leak (the CA sees who connected). Enable ssl_stapling on (nginx) / SSLUseStapling On (Apache) / OCSPStapling = on (Caddy auto-enables).

Source: RFC 6961 / Mozilla Server-Side TLS guide

Connection
Protocol
TLS 1.3
Cipher Suite
TLS_CHACHA20_POLY1305_SHA256
HTTP Version
h2 (HTTP/2)

Certificate Chain

Leaf Certificate
Subject CN=*.vnexpress.netIssuer CN=GlobalSign GCC R46 DV TLS CA 2025,O=GlobalSign nv-sa,C=BEValid 2026-08-10T09:39:21Z → 2027-02-25T09:39:21ZExpires in 180 days SANs *.vnexpress.net, owa.vnexpress.net, mail.vnexpress.net, autodiscover.vnexpress.net, www.vnexpress.net, vnexpress.netSignature SHA256-RSASerial 9642bed37633f940be5a666
Intermediate (CA Certificate)
Subject CN=GlobalSign GCC R46 DV TLS CA 2025,O=GlobalSign nv-sa,C=BEIssuer CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BEValid 2025-09-17T02:55:44Z → 2029-06-23T00:00:00ZExpires in 1029 days Signature SHA256-RSASerial 8443588121db5ab28499ffae80670ba4
Intermediate (CA Certificate)
Subject CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BEIssuer CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSignValid 2019-11-20T00:00:00Z → 2029-03-18T00:00:00ZExpires in 932 days Signature SHA384-RSASerial 75a8bad878f8af305f72dd1c1140df3a
Intermediate (CA Certificate)
Subject CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSignIssuer CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSignValid 2009-03-18T10:00:00Z → 2029-03-18T10:00:00ZExpires in 932 days Signature SHA256-RSASerial 4000000000121585308a2
A+
Cookie Security
1 cookies analyzed, 2 checks passed
PASS
1 cookies analyzed, 2 checks passed
Info::
Cookie 'device_env' has the Secure flag
Warning::
Cookie 'device_env' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Info::
Cookie 'device_env' has SameSite=None
1 cookies analyzed 1 warnings
NameSecureHttpOnlySameSiteSizeIssues
device_envNone11 B1
A+
Bot Challenge Detection
Scan reached real page content (no bot-protection interstitial)
PASS
Scan reached real page content (no bot-protection interstitial)
Info::
No bot-protection interstitial detected -- the rest of the report reflects the real page
A+
Soft-404 Detection
No soft-404 patterns detected in page title or headings
PASS
No soft-404 patterns detected in page title or headings
Info::
No soft-404 patterns detected in page title or headings
A+
Empty Page Detection
Page has substantive body text and no placeholder / template-leak signals
PASS
Page has substantive body text and no placeholder / template-leak signals
Info::
Page has substantive body text and no placeholder / template-leak signals
A+
Geo-Restriction Detection
No geo-restriction signals detected -- scan reached the page from an allowed region
PASS
No geo-restriction signals detected -- scan reached the page from an allowed region
Info::
No geo-restriction detected
A+
Maintenance Mode Detection
No maintenance-mode signals detected -- scan reached a normal page
PASS
No maintenance-mode signals detected -- scan reached a normal page
Info::
No maintenance-mode signals detected
A+
CORS Depth
No CORS response headers -- the resource is same-origin-only by browser default
PASS
No CORS response headers -- the resource is same-origin-only by browser default
Info::
No CORS response headers -- the resource is same-origin-only by browser default
A+
Referrer-Policy Strictness
Referrer-Policy is `strict-origin-when-cross-origin` (modern default -- full URL same-origin, origin-only cross-origin)
PASS
Referrer-Policy is `strict-origin-when-cross-origin` (modern default -- full URL same-origin, origin-only cross-origin)
Info::
Referrer-Policy: `strict-origin-when-cross-origin` -- modern default -- full URL same-origin, origin-only cross-origin
The modern browser default (Chrome 85+, Firefox 87+, Safari 15+). Full URL Referer on same-origin; origin only on cross-origin; no Referer on HTTPS-to-HTTP downgrade. Privacy-safe and breaks no analytics. The recommended explicit value.
Got: strict-origin-when-cross-origin
A+
Source Map Exposure
Source-map probe didn't run on this scan
PASS
Source-map probe didn't run on this scan
Info::
Source-map probe didn't run on this scan
A+
HTML Version Disclosure
No software-version disclosures in HTML
PASS
No software-version disclosures in HTML
Info::
No software-version disclosures in HTML
A+
Open Redirect Surface
No redirect-shaped query parameters in DOM links
PASS
No redirect-shaped query parameters in DOM links
Info::
No redirect-shaped query parameters in DOM links
A+
Auth Security
Page is not a login form -- auth-security checks are N/A
PASS
Page is not a login form -- auth-security checks are N/A
Info::
Page does not appear to be a login form
A+
Subdomain Inventory Exposure
No risky subdomain names in certificate SANs
PASS
No risky subdomain names in certificate SANs
Info::
No risky subdomain names in certificate SANs
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
/package.json Not founddependency-manifest
/composer.json Not founddependency-manifest
/Gemfile Not founddependency-manifest
/Gemfile.lock Not founddependency-manifest
/requirements.txt Not founddependency-manifest
/pom.xml Not founddependency-manifest
/.gitlab-ci.yml Not foundci-config
/.travis.yml Not foundci-config
A+
API Surface
No API specs or GraphQL introspection found (probed 11 candidate path(s))
PASS
No API specs or GraphQL introspection found (probed 11 candidate path(s))
Info::
No API specs or GraphQL introspection found (probed 11 path(s))
A+
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Info::
HSTS enabled (includeSubDomains)
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