Skip to content
https://ventro.com.bd

Security

· 32 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
83
GRADE
B
FIX
5
REVIEW
5
PASS
22
INFO
0
Checks
32
22 PASS 5 REVIEW 5 FIX
F
Content Security Policy
Action
No enforcing CSP policy found
FIX
No enforcing CSP policy found
Critical::
No Content-Security-Policy header found
CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.
Expected: default-src 'self'

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

Expected: default-src 'self'
Why this matters

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

Learn more

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

Source: OWASP / MDN

D
Subresource Integrity Adoption
Action
2% SRI adoption (1/43 third-party resources)
FIX
2% SRI adoption (1/43 third-party resources)
Warning::
SRI adoption: 1/43 third-party resources protected (2%)
Of 43 third-party `<script>` / `<link rel=stylesheet>` resources, 1 (2%) 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://scripts.clarity.ms/0.8.67/clarity.js - https://connect.facebook.net/signals/config/3512727132292582?v=2.9.361&r=stable&domain=ventro.com.bd&hme=eec000113e1e9f56e9fc6cdeb39d59ad805f76a48c77cf3d5c028dcf3b38ee7c&ex_m=108%2C209%2C159%2C22%2C73%2C74%2C150%2C69%2C68%2C11%2C168%2C93%2C16%2C142%2C131%2C39%2C76%2C81%2C138%2C164%2C170%2C26%2C27%2C28%2C30%2C48%2C151%2C78%2C116%2C18%2C20%2C44%2C40%2C42%2C41%2C86%2C95%2C99%2C114%2C149%2C152%2C46%2C115%2C24%2C21%2C123%2C70%2C36%2C154%2C153%2C155%2C146%2C144%2C25%2C35%2C59%2C113%2C166%2C71%2C17%2C157%2C118%2C84%2C67%2C19%2C88%2C89%2C120%2C87%2C140%2C139%2C143%2C100%2C165%2C34%2C49%2C117%2C47%2C8%2C4%2C5%2C7%2C6%2C3%2C94%2C105%2C171%2C176%2C223%2C75%2C236%2C235%2C234%2C23%2C33%2C55%2C107%2C61%2C10%2C64%2C101%2C102%2C103%2C109%2C134%2C31%2C29%2C136%2C137%2C133%2C132%2C160%2C77%2C163%2C161%2C162%2C50%2C60%2C127%2C15%2C167%2C45%2C281%2C282%2C280%2C295%2C311%2C216%2C205%2C62%2C206%2C204%2C314%2C305%2C52%2C217%2C111%2C135%2C83%2C125%2C54%2C124%2C130%2C129%2C58%2C65%2C63%2C156%2C79%2C80%2C119%2C37%2C32%2C53%2C56%2C104%2C169%2C1%2C128%2C14%2C126%2C12%2C2%2C57%2C96%2C66%2C122%2C92%2C91%2C172%2C173%2C97%2C98%2C9%2C106%2C51%2C147%2C90%2C82%2C72%2C121%2C110%2C43%2C148%2C0%2C85%2C141%2C145%2C158%2C38%2C112%2C13%2C174 - https://connect.facebook.net/en_US/fbevents.js - https://adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net/frontendInjection.js - https://www.clarity.ms/tag/xh8ufemimv?ref=shopify 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: 2% (1/43)
D
Source Map Exposure
Action
2 publicly-accessible source map(s) -- full source code leaked
FIX
2 publicly-accessible source map(s) -- full source code leaked
Warning::
2 publicly-accessible JavaScript source map(s)
Source maps (.js.map files) reveal the original source code -- variable names, comments, file structure, and sometimes secrets that were stripped from the bundled output. They're shipped to production by mistake almost universally; the standard fix is a build-tool config flag (Webpack: `devtool: false` or `'hidden-source-map'`; Vite: `build.sourcemap: false`; Next.js: `productionBrowserSourceMaps: false`). Once removed, audit your CDN/edge cache to evict any previously-cached .map URLs. Sample accessible URLs: https://ventro.com.bd/cdn/shopifycloud/privacy-banner/storefront-banner.js.map, https://ventro.com.bd/cdn/shop/t/10/assets/theme.js.map.
D
Subresource Integrity
Action
1 of 43 external resources have SRI
FIX
1 of 43 external resources have SRI
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.67/clarity.js
Warning::
External script from connect.facebook.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://connect.facebook.net/signals/config/3512727132292582?v=2.9.361&r=stable&domain=ventro.com.bd&hme=eec000113e1e9f56e9fc6cdeb39d59ad805f76a48c77cf3d5c028dcf3b38ee7c&ex_m=108%2C209%2C159%2C22%2C73%2C74%2C150%2C69%2C68%2C11%2C168%2C93%2C16%2C142%2C131%2C39%2C76%2C81%2C138%2C164%2C170%2C26%2C27%2C28%2C30%2C48%2C151%2C78%2C116%2C18%2C20%2C44%2C40%2C42%2C41%2C86%2C95%2C99%2C114%2C149%2C152%2C46%2C115%2C24%2C21%2C123%2C70%2C36%2C154%2C153%2C155%2C146%2C144%2C25%2C35%2C59%2C113%2C166%2C71%2C17%2C157%2C118%2C84%2C67%2C19%2C88%2C89%2C120%2C87%2C140%2C139%2C143%2C100%2C165%2C34%2C49%2C117%2C47%2C8%2C4%2C5%2C7%2C6%2C3%2C94%2C105%2C171%2C176%2C223%2C75%2C236%2C235%2C234%2C23%2C33%2C55%2C107%2C61%2C10%2C64%2C101%2C102%2C103%2C109%2C134%2C31%2C29%2C136%2C137%2C133%2C132%2C160%2C77%2C163%2C161%2C162%2C50%2C60%2C127%2C15%2C167%2C45%2C281%2C282%2C280%2C295%2C311%2C216%2C205%2C62%2C206%2C204%2C314%2C305%2C52%2C217%2C111%2C135%2C83%2C125%2C54%2C124%2C130%2C129%2C58%2C65%2C63%2C156%2C79%2C80%2C119%2C37%2C32%2C53%2C56%2C104%2C169%2C1%2C128%2C14%2C126%2C12%2C2%2C57%2C96%2C66%2C122%2C92%2C91%2C172%2C173%2C97%2C98%2C9%2C106%2C51%2C147%2C90%2C82%2C72%2C121%2C110%2C43%2C148%2C0%2C85%2C141%2C145%2C158%2C38%2C112%2C13%2C174
Warning::
External script from connect.facebook.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://connect.facebook.net/en_US/fbevents.js
Warning::
External script from adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net/frontendInjection.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/xh8ufemimv?ref=shopify
Info::
script from cdn.shopify.com has SRI protection
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/loader.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f8ed9-ac98-7bba-a94f-c487d4885ef4/lb-upsell-427/assets/lb-selleasy.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f91fb-e12a-7ba5-ad41-d113c3faa8ee/forms-2473/assets/shopify-forms-loader.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/carousels.js
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/carousels.css
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f468e-0cb8-7fc8-b8fd-dc6f68d40c36/mandolly-product-customizer-180/assets/mepc-script.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/testimonials_carousel.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f9313-8c9e-70df-acbf-b995df24f1e2/blockify-checkout-rules-626/assets/block-checkout.min.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f91fb-e12a-7ba5-ad41-d113c3faa8ee/forms-2473/assets/index.js
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/layout-DoosNJCm.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Text-CQZ7f97l.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Center-DuedLykc.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/JLightbox-CDm52qls.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/JmModal-CkjWUkR6.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/JLightboxCarousel-Bd3lHvqk.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/JLightboxContent-CXehstry.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/ReviewItem-RofLasC7.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Cluster-CiawKNFa.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Stack-DHDZjISx.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Box-DtEw4VQg.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Icon-Dm_usQ00.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/StarRating-CcPYmFC3.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/ReviewContent-DzgWFMUg.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Frame-B8MXG7Dz.css
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/Button-Bfno6Nex.css
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/carousel_lightbox.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/storefront/webmcp/webmcp-0.0.4.js
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93b0-623c-7958-b0d5-dba999c46c01/ecomsend-169/assets/style.css
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f8ed9-ac98-7bba-a94f-c487d4885ef4/lb-upsell-427/assets/lb-upsell.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f8ed9-ac98-7bba-a94f-c487d4885ef4/lb-upsell-427/assets/lb-upsell-components.esm.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f8ed9-ac98-7bba-a94f-c487d4885ef4/lb-upsell-427/assets/lb-utils.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f7be7-1888-7854-bf22-91e9942504c2/restockrocket-1-546/assets/restockrocket-collection.js
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/storefront/standard-actions.js
Warning::
External link from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93aa-683a-7abe-a426-1f5d35b461ff/judgeme-651/assets/widget_v3_base.css
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=GT-WVJVLNZ
Warning::
External script from cdn.shopify.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.shopify.com/extensions/019f93b0-623c-7958-b0d5-dba999c46c01/ecomsend-169/assets/ecomsend.js
Warning::
External script from adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net/assets/index-D0XC-vN_.js
SRI Coverage 1 / 43 of external resources have integrity hashes
TagDomainIntegrity
<script>scripts.clarity.ms Missing
<script>connect.facebook.net Missing
<script>connect.facebook.net Missing
<script>adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net Missing
<script>www.clarity.ms Missing
<script>cdn.shopify.com Protected
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<script>cdn.shopify.com Missing
<link>cdn.shopify.com Missing
<script>www.googletagmanager.com Missing
<script>cdn.shopify.com Missing
<script>adsagentclientafd-b7hqhjdrf3fpeqh2.b01.azurefd.net Missing
F
Email Security
Action
DMARC: none, no SPF
FIX
DMARC: none, no SPF
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.
Warning::
No SPF record found
Without SPF (Sender Policy Framework), receivers can't tell which servers are authorized to send mail for your domain. Add a TXT record at the apex starting with v=spf1, ending in -all.
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; rua=mailto:4218341da38f496c87aba1f5f539bf91@dmarc-reports.cloudflare.net;

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 SPF (Sender Policy Framework), receivers can't tell which servers are authorized to send mail for your domain. Add a TXT record at the apex starting with v=spf1, ending in -all.

Why this matters

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

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.

C
Security Headers
Action
8 of 10 headers properly configured
REVIEW
8 of 10 headers properly configured
Critical::
HSTS header is missing
Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.
Expected: max-age=31536000; includeSubDomains
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: same-origin
Info::
Permissions-Policy is set
Got: accelerometer=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=(),xr-spatial-tracking=*
Critical::
Content-Security-Policy header is missing
CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.
Expected: default-src 'self'
Info::
Cross-Origin-Opener-Policy is properly configured
Got: same-origin
Info::
Cross-Origin-Embedder-Policy is set
Got: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: cloudflare
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

Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.

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

Without HSTS, a network attacker can downgrade the very first connection to HTTP and steal the user's session.

Learn more

HSTS tells browsers 'never speak HTTP to this domain again.' Without it, a network attacker (public WiFi, malicious ISP, hostile DNS) intercepts the first HTTP attempt and serves a downgraded version of your site. One header, big surface reduction.

Source: RFC 6797 / OWASP

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

Expected: default-src 'self'
Why this matters

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

Learn more

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

Source: OWASP / MDN

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

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

C
Cross-Origin Tab Safety
Action
3 of 3 new-tab link(s) missing rel=noopener
REVIEW
3 of 3 new-tab link(s) missing rel=noopener
Warning::
3 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.
C
API Surface
Action
GraphQL introspection enabled at /api/graphql
REVIEW
GraphQL introspection enabled at /api/graphql
Warning::
GraphQL introspection enabled at /api/graphql
Introspection lets clients query the GraphQL server for its complete schema -- every type, field, argument, and resolver name. Convenient during development; on production, an attacker uses it as a free recon tool to map the entire data graph. Disable in production unless your API is intentionally public-spec.
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
A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_128_GCM_SHA256
Info::
HTTP/2 is not negotiated
HTTP/2 provides multiplexing and header compression for better performance.
Got: http/1.1
Info::
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 86 days)
Got: 2026-10-20T01:55:32Z
Info::
Certificate chain has 4 certificates
Info::
Certificate uses modern signature algorithm
Got: ECDSA-SHA384
Info::
Certificate covers 1 domain(s)
Got: ventro.com.bd
Info::
Certificate is issued by a trusted CA
Got: CN=YE1,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

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_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=ventro.com.bdIssuer CN=YE1,O=Let's Encrypt,C=USValid 2026-07-22T01:55:33Z → 2026-10-20T01:55:32ZExpires in 86 days SANs ventro.com.bdSignature ECDSA-SHA384Serial 55aed069188ac8cec5401d10685621dcffd
Intermediate (CA Certificate)
Subject CN=YE1,O=Let's Encrypt,C=USIssuer CN=Root YE,O=ISRG,C=USValid 2025-09-03T00:00:00Z → 2028-09-02T23:59:59ZExpires in 770 days Signature ECDSA-SHA384Serial 5ddd70dd31f801c85c186a7a04b80afe
Intermediate (CA Certificate)
Subject CN=Root YE,O=ISRG,C=USIssuer CN=ISRG Root X2,O=Internet Security Research Group,C=USValid 2026-05-13T00:00:00Z → 2032-09-02T23:59:59ZExpires in 2231 days Signature ECDSA-SHA384Serial 872165fc34b6e5fba8add5b3705fb53a
Intermediate (CA Certificate)
Subject CN=ISRG Root X2,O=Internet Security Research Group,C=USIssuer CN=ISRG Root X1,O=Internet Security Research Group,C=USValid 2026-05-13T00:00:00Z → 2032-09-02T23:59:59ZExpires in 2231 days Signature SHA256-RSASerial 6c8f1dc727c7117f7baf853ac980f9cd
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
WAF / Bot Protection
Cloudflare WAF (active mitigation)
PASS
Cloudflare WAF (active mitigation)
Info::
Cloudflare WAF (active mitigation) detected
Detected via: cf-ray: a20af4cf9f4f2a67-CDG; cf-mitigated: challenge
Got: Cloudflare WAF (active mitigation)
A+
CSP Inline-Style Readiness
No inline style attributes -- strict CSP is feasible
PASS
No inline style attributes -- strict CSP is feasible
Info::
No inline style attributes detected
A+
Trusted Types (XSS Sink Hardening)
No CSP header -- Trusted Types check is N/A
PASS
No CSP header -- Trusted Types check is N/A
Info::
No CSP header found -- Trusted Types check is N/A
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
HTTP status is non-2xx -- soft-404 check is N/A
PASS
HTTP status is non-2xx -- soft-404 check is N/A
Info::
HTTP status is non-2xx -- soft-404 check is N/A
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
Permissions-Policy Granularity
90% high-risk feature coverage (9/10)
PASS
90% high-risk feature coverage (9/10)
Info::
Permissions-Policy covers 9/10 high-risk features (90%)
The Permissions-Policy header explicitly declares policies for 9/10 high-risk features. Covered: camera, microphone, geolocation, payment, usb, serial, accelerometer, gyroscope, magnetometer Not declared (default-allow): midi The non-declared features fall back to their spec-default policy (usually `self`), which means an XSS-injected or compromised iframe could request them. For features the page genuinely doesn't use, declare `feature=()` to fully close them.
Got: 90% (9/10)
A+
Referrer-Policy Strictness
Referrer-Policy is `same-origin` (strict -- Referer sent only on same-origin requests)
PASS
Referrer-Policy is `same-origin` (strict -- Referer sent only on same-origin requests)
Info::
Referrer-Policy: `same-origin` -- strict -- Referer sent only on same-origin requests
Full URL Referer header on same-origin requests; no Referer at all on cross-origin. Strong privacy posture; same-origin analytics still work.
Got: same-origin
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+
Permissions-Policy
16 directives, 0 missing
PASS
16 directives, 0 missing
Info::
accelerometer=() — blocked for all origins
Info::
camera=() — blocked for all origins
Info::
clipboard-read=() — blocked for all origins
Info::
clipboard-write=() — blocked for all origins
Info::
geolocation=() — blocked for all origins
Info::
gyroscope=() — blocked for all origins
Info::
hid=() — blocked for all origins
Info::
magnetometer=() — blocked for all origins
Info::
microphone=() — blocked for all origins
Info::
payment=() — blocked for all origins
Info::
publickey-credentials-get=() — blocked for all origins
Info::
screen-wake-lock=() — blocked for all origins
Info::
serial=() — blocked for all origins
Info::
sync-xhr=() — blocked for all origins
Info::
usb=() — blocked for all origins
Info::
xr-spatial-tracking=*

Raw Header

accelerometer=() camera=() clipboard-read=() clipboard-write=() geolocation=() gyroscope=() hid=() magnetometer=() microphone=() payment=() publickey-credentials-get=() screen-wake-lock=() serial=() sync-xhr=() usb=() xr-spatial-tracking=*

Feature Permissions

Blocked Self Only Unrestricted Not Set
accelerometer Blocked
camera Blocked
clipboard-read Blocked
clipboard-write Blocked
geolocation Blocked
gyroscope Blocked
hid Blocked
magnetometer Blocked
microphone Blocked
payment Blocked
publickey-credentials-get Blocked
screen-wake-lock Blocked
serial Blocked
sync-xhr Blocked
usb Blocked
xr-spatial-tracking Unrestricted
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::
Missing Strict-Transport-Security header
HSTS tells browsers to only use HTTPS, preventing SSL stripping attacks.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback