Skip to content
https://chilisjobs.com

Security

· 32 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
80
GRADE
B
FIX
5
REVIEW
8
PASS
19
INFO
0
Checks
32
19 PASS 8 REVIEW 5 FIX
F
Security Headers
Action
3 of 10 headers properly configured
FIX
3 of 10 headers properly configured
Critical::
HSTS header is missing
Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.
Expected: max-age=31536000; includeSubDomains
Warning::
X-Content-Type-Options header is missing
This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.
Expected: nosniff
Warning::
X-Frame-Options header is missing
This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.
Expected: DENY
Warning::
Referrer-Policy header is missing
Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.
Expected: strict-origin-when-cross-origin
Info::
Permissions-Policy is set
Got: private-state-token-redemption=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com"), private-state-token-issuance=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com")
Info::
Content-Security-Policy is present
Got: default-src 'self' https://dokumfe7mps0i.cloudfront.net/; script-src 'self' 'eva…
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
Warning::
X-Powered-By header reveals technology stack
This header discloses server technology (e.g. Express, PHP), helping attackers target known vulnerabilities. Remove it.
Got: WP Engine
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

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

Expected: nosniff
Why this matters

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

Learn more

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

Source: OWASP / MDN

This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.

Expected: DENY
Why this matters

Without frame protection, your site can be embedded in a hostile page and used for clickjacking.

Learn more

Clickjacking overlays your site under a transparent malicious page so users click invisible buttons. Setting X-Frame-Options: DENY (or a modern frame-ancestors CSP directive) blocks the embedding entirely. There's almost never a legitimate reason to allow it.

Source: OWASP / MDN

Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.

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

Default browser behavior leaks full URLs (including query params and tokens) to every third-party resource — set a strict policy.

Learn more

Without a Referrer-Policy header, browsers send the full referring URL with images, scripts, and fonts loaded from third-party origins. URLs containing tokens, user IDs, or session params end up in third-party logs. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter) to limit leakage.

Source: MDN / W3C

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

This header discloses server technology (e.g. Express, PHP), helping attackers target known vulnerabilities. Remove it.

Why this matters

X-Powered-By: PHP/7.4.3 advertises your stack to attackers — disable it.

Learn more

X-Powered-By and similar headers (X-AspNet-Version, X-Runtime) tell attackers which versions to target. Disable in your server/framework config: PHP `expose_php=Off`, ASP.NET `<httpRuntime enableVersionHeader="false">`, Express `app.disable('x-powered-by')`.

Source: OWASP

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

F
Subresource Integrity Adoption
Action
0% SRI adoption (0/35 third-party resources)
FIX
0% SRI adoption (0/35 third-party resources)
Warning::
SRI adoption: 0/35 third-party resources protected (0%)
Of 35 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://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/bootstrap.min.css - https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/jquery-ui.min.css - https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/fontawesome.all.min.css - https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/slick.css - https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/slick-theme.css 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/35)
F
Permissions-Policy Granularity
Action
0% high-risk feature coverage (0/10)
FIX
0% high-risk feature coverage (0/10)
Warning::
Permissions-Policy covers 0/10 high-risk features (0%)
The Permissions-Policy header explicitly declares policies for 0/10 high-risk features. Covered: Not declared (default-allow): camera, microphone, geolocation, payment, usb, serial, midi, accelerometer, gyroscope, magnetometer 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: 0% (0/10)
F
Subresource Integrity
Action
0 of 35 external resources have SRI
FIX
0 of 35 external resources have SRI
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/bootstrap.min.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/jquery-ui.min.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/fontawesome.all.min.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/slick.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/slick-theme.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/selectize.bootstrap4.css
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/css/main.min.css?v=20260510
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/destination?id=AW-753725155&cx=c&gtm=4e6562
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/1144601875748424?v=2.9.313&r=stable&domain=www.chilisjobs.com&hme=97937018cefade17726f0472876fc101316b2ce9008a35a6a5a7977d7436151a&ex_m=104%2C205%2C154%2C22%2C72%2C73%2C145%2C68%2C67%2C11%2C162%2C90%2C16%2C138%2C48%2C146%2C77%2C112%2C47%2C127%2C39%2C75%2C78%2C134%2C159%2C164%2C8%2C4%2C5%2C7%2C6%2C3%2C91%2C101%2C165%2C170%2C219%2C62%2C186%2C187%2C55%2C276%2C30%2C74%2C231%2C230%2C229%2C23%2C33%2C103%2C61%2C10%2C63%2C97%2C98%2C99%2C105%2C130%2C31%2C29%2C132%2C133%2C129%2C128%2C155%2C76%2C158%2C156%2C157%2C50%2C60%2C123%2C15%2C161%2C45%2C263%2C264%2C262%2C26%2C27%2C28%2C18%2C20%2C44%2C40%2C42%2C41%2C83%2C92%2C96%2C110%2C144%2C147%2C46%2C111%2C24%2C21%2C119%2C69%2C36%2C149%2C148%2C150%2C141%2C139%2C25%2C35%2C59%2C109%2C160%2C70%2C17%2C152%2C114%2C81%2C66%2C19%2C85%2C86%2C116%2C84%2C136%2C135%2C34%2C278%2C293%2C212%2C201%2C202%2C200%2C296%2C288%2C52%2C213%2C107%2C131%2C80%2C121%2C54%2C49%2C113%2C120%2C126%2C58%2C64%2C151%2C115%2C37%2C32%2C53%2C56%2C100%2C163%2C1%2C124%2C14%2C122%2C12%2C2%2C57%2C93%2C65%2C118%2C89%2C88%2C166%2C167%2C94%2C95%2C9%2C125%2C102%2C51%2C142%2C87%2C79%2C71%2C117%2C106%2C43%2C143%2C0%2C82%2C137%2C140%2C153%2C38%2C108%2C13%2C168
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 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=AW-10948122074&cx=c&gtm=4e6562
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-SKQ80NCNWD&cx=c&gtm=4e6562
Warning::
External script from tags.srv.stackadapt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.srv.stackadapt.com/events.js
Warning::
External script from cdn.cookielaw.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cookielaw.org/scripttemplates/otSDKStub.js?did=0199a0ec-6bbc-7bfb-a148-44757065ec89
Warning::
External script from cdn.cookielaw.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cookielaw.org/consent/0199a0ec-6bbc-7bfb-a148-44757065ec89/OtAutoBlock.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-MZD5W3Z
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/appcast-jobsearch-plugin/plugin_helpers/../assets/css/appcast_ui.css?ver=1778422110
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/appcast-jobsearch-plugin/plugin_helpers/../assets/css/appcast_autocomplete.css?ver=1778422110
Warning::
External link from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/appcast-jobsearch-plugin/plugin_helpers/../assets/css/appcast_bookmark.css?ver=1778422110
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1
Warning::
External script from cdn.cookielaw.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.cookielaw.org/scripttemplates/202509.1.0/otBannerSdk.js
Warning::
External link from tags.srv.stackadapt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.srv.stackadapt.com/sa.css
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/jquery-3.5.1.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/popper-1.16.1.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/bootstrap.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/jquery-ui.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/slick.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/selectize.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/list-2.3.0.min.js
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/themes/chilis/assets/src/js/main.js?v=20260510020830
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/appcast-jobsearch-plugin/plugin_helpers/../assets/js/appcast_addsources.js?ver=1778307752
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/appcast-jobsearch-plugin/plugin_helpers/../assets/js/appcast_jobsearch_scripts.js?ver=1778307752
Warning::
External script from www.chilisjobs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.chilisjobs.com/wp-content/plugins/wp-analytify/assets/js/scrolldepth.js?ver=9.0.1
Warning::
External script from analytics.talentegy.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://analytics.talentegy.com/443c8104-85a5-4a07-9cf8-8009b160ad7c.js
SRI Coverage 0 / 35 of external resources have integrity hashes
TagDomainIntegrity
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<script>www.googletagmanager.com Missing
<script>connect.facebook.net Missing
<script>connect.facebook.net Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>tags.srv.stackadapt.com Missing
<script>cdn.cookielaw.org Missing
<script>cdn.cookielaw.org Missing
<script>www.googletagmanager.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<link>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>cdn.cookielaw.org Missing
<link>tags.srv.stackadapt.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>www.chilisjobs.com Missing
<script>analytics.talentegy.com Missing
F
Email Security
Action
no DMARC, no SPF
FIX
no DMARC, no SPF
Warning::
No DMARC record found
Without DMARC, email receivers have no policy for handling authentication failures. Add a TXT record at _dmarc.<domain> starting with v=DMARC1.
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

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. Add a TXT record at _dmarc.<domain> starting with v=DMARC1.

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

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.

B
Content Security Policy
6 of 10 CSP checks passed
REVIEW
6 of 10 CSP checks passed
Info::
Raw CSP policy
Got: default-src 'self' https://dokumfe7mps0i.cloudfront.net/; script-src 'self' 'eval' 'inline' https://cdn.cookielaw.org/ https://cdn.jsdelivr.net/npm/ https://cdn.mouseflow.com/ https://cdnjs.cloudflare.com/ https://connect.facebook.net/ https://static.cloudflareinsights.com/ https://www.googletagmanager.com/ 'unsafe-eval'; script-src-elem 'self' 'inline' blob: 'eval' https://*.talentegy.com/ https://*.google.com/ https://*.cloudfront.net/ https://*.clarity.ms/ https://www.googletagmanager.com/ https://cdn.cookielaw.org/ https://connect.facebook.net/ https://tags.srv.stackadapt.com/ https://api.mapbox.com/ https://www.google-analytics.com/ https://googleads.g.doubleclick.net/ https://ajax.googleapis.com/ https://bigidcmp.cloud/ https://cdn.jsdelivr.net/ https://cdn.mouseflow.com/ https://cdnjs.cloudflare.com/ https://click.appcast.io/ https://click.appcastinc.net/ https://click.appcastincmaster.com/ https://code.jquery.com/ https://ct.pinterest.com/ https://f.vimeocdn.com/ https://js-na1.hs-scripts.com/ https://js.adsrvr.org/ https://js.hs-analytics.net/ https://js.hs-banner.com/ https://js.zi-scripts.com/ https://optimize-pixel.jobadx.com/ https://pfg.bayardextranet.com/ https://player.vimeo.com/ https://s.pinimg.com/ https://secured-pixel.com/ https://snap.licdn.com/ https://static.cloudflareinsights.com/ https://transcend-cdn.com/ https://unpkg.com/ https://widget.altrulabs.com/ https://www.gstatic.com/ https://www.youtube.com/ 'unsafe-inline' https://qvdt3feo.com https://analytics.talentegy.com/; script-src-attr 'self' 'inline'; style-src 'self' 'unsafe-inline' https://cdn.cookielaw.org/ https://cdn.jsdelivr.net/ https://cdnjs.cloudflare.com/ https://fonts.googleapis.com/ https://p.typekit.net/ https://stackpath.bootstrapcdn.com/ https://unpkg.com/; style-src-elem 'self' 'unsafe-inline' 'inline' https://*.typekit.net/ https://tags.srv.stackadapt.com/ https://api.mapbox.com/ https://bigidcmp.cloud/ https://cdn.cookielaw.org/ https://cdn.jsdelivr.net/ https://cdnjs.cloudflare.com/ https://code.jquery.com/ https://fonts.googleapis.com/ https://jobs.tacobell.com/ https://stackpath.bootstrapcdn.com/ https://static.licdn.com/ https://transcend-cdn.com/ https://unpkg.com/; style-src-attr 'self' 'unsafe-inline' 'inline' https://cdnjs.cloudflare.com/; img-src 'self' data: blob: https://*.doubleclick.net/ https://*.google.com/ https://*.amazonaws.com/ https://*.cloudfront.net/ https://*.talentegy.com/ https://cdn.cookielaw.org/ https://i.vimeocdn.com/ https://www.facebook.com/ https://www.googletagmanager.com/ https://i.ytimg.com/ https://www.googleadservices.com/ https://cdn-static.findly.com/ https://c.clarity.ms/ https://cdn-images-1.medium.com/ https://cdn-us.altrulabs.com/ https://cdn.cursor.style/ https://cdn.jsdelivr.net/ https://cdn.olivia.paradox.ai/ https://cdnjs.cloudflare.com/ https://click.appcast.io/ https://connect.facebook.net/ https://conv.indeed.com/ https://fonts.gstatic.com/ https://img.youtube.com/ https://jobs.tacobell.com/ https://pagead2.googlesyndication.com/ https://pixel-prod.gotoro.io/ https://px.ads.linkedin.com/ https://secure.gravatar.com/ https://track.hubspot.com/ https://track.jobadx.com/ https://www.brinkerjobs.com/ https://www.google.com/; font-src 'self' data: https://fonts.gstatic.com/ https://bigidcmp.cloud/ https://cdn.altrulabs.com/ https://cdn.cookielaw.org/ https://cdn.jsdelivr.net/ https://cdnjs.cloudflare.com/ https://dokumfe7mps0i.cloudfront.net/ https://r2cdn.perplexity.ai/ https://stackpath.bootstrapcdn.com/ https://use.fontawesome.com/ https://use.typekit.net/; connect-src 'self' data: https://*.mapbox.com/ https://*.onetrust.com/ https://*.doubleclick.net/ https://*.google.com/ https://*.google-analytics.com/ https://*.clarity.ms/ https://*.altrulabs.com/ https://*.bigidcmp.cloud/ https://*.appcast.io/ https://*.appcastinc.net/ https://*.cloudfront.net/ https://*.talentegy.com/ https://cdn.cookielaw.org/ https://tags.srv.stackadapt.com/ https://pagead2.googlesyndication.com/ https://www.googleadservices.com/ https://www.googletagmanager.com/ https://api.killadsapi.com/ https://api.coralanalytic.com/ https://api.privacy-protector-adblocker.com/ https://bat.bing.net/ https://cdn.jsdelivr.net/ https://cdnjs.cloudflare.com/ https://click.appcastincmaster.com/ https://ct.pinterest.com/ https://fonts.googleapis.com/ https://fonts.gstatic.com/ https://insight.adsrvr.org/ https://olivia.paradox.ai/ https://px.ads.linkedin.com/ https://telemetry.transcend.io/ https://transcend-cdn.com/ https://us01.rec.mouseflow.com/ https://usage-us.talentplatform.com/ https://www.facebook.com/ https://www.getgreatcareers.com/ wss://click.appcast.io/ wss://ws.paradox.ai/ https://www.google.com/ https://stats.g.doubleclick.net/ https://analytics.google.com/ https://api.mapbox.com/ https://events.mapbox.com/; media-src 'self' data: https://*.altrulabs.com/ https://dam.tacobell.com/; frame-src 'self' 'none' https://*.vimeo.com/ https://*.adsrvr.org/ https://*.google.com/ https://www.youtube.com/ https://www.googletagmanager.com/ http://google.com/ https://api.coralanalytic.com/ https://bigidcmp.cloud https://chrome.aramark.paradox.ai/ https://ct.pinterest.com/ https://players.brightcove.net/ https://useast-www.securly.com/ https://www.facebook.com/ https://www.youtube-nocookie.com https://player.vimeo.com/; frame-ancestors 'self' 'none'; base-uri 'self' 'about'; form-action 'self' https://www.facebook.com/ https://www.chilisjobs.com/; object-src 'self' 'none'; worker-src 'self' blob:; report-to csp-endpoint
Info::
default-src directive is set
Got: default-src 'self' https://dokumfe7mps0i.cloudfront.net/
Info::
No 'unsafe-inline' in script source
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src 'self' 'eval' 'inline' https://cdn.cookielaw.org/ https://cdn.jsdelivr.net/npm/ https://cdn.mouseflow.com/ https://cdnjs.cloudflare.com/ https://connect.facebook.net/ https://static.cloudflareinsights.com/ https://www.googletagmanager.com/ 'unsafe-eval'
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 'self' 'none' Expected: object-src 'none'
Info::
base-uri is properly restricted
Got: base-uri 'self' 'about'
Info::
frame-ancestors directive is set
Got: frame-ancestors 'self' 'none'
Info::
form-action directive is set
Got: form-action 'self' https://www.facebook.com/ https://www.chilisjobs.com/
Info::
upgrade-insecure-requests is not set
This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.
Expected: upgrade-insecure-requests

'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

This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.

Expected: upgrade-insecure-requests
Why this matters

Without upgrade-insecure-requests, any HTTP subresource link survives as a mixed-content warning instead of auto-upgrading.

Learn more

Adding `upgrade-insecure-requests` to your CSP turns every http:// subresource fetch into https:// at the browser layer. One-line defense against accidental mixed content from legacy links or third-party widgets.

Source: MDN CSP

Parsed Policy

default-src 'self'https://dokumfe7mps0i.cloudfront.net/
script-src 'self''eval''inline'https://cdn.cookielaw.org/https://cdn.jsdelivr.net/npm/https://cdn.mouseflow.com/https://cdnjs.cloudflare.com/https://connect.facebook.net/https://static.cloudflareinsights.com/https://www.googletagmanager.com/'unsafe-eval'
script-src-elem 'self''inline'blob:'eval'https://*.talentegy.com/https://*.google.com/https://*.cloudfront.net/https://*.clarity.ms/https://www.googletagmanager.com/https://cdn.cookielaw.org/https://connect.facebook.net/https://tags.srv.stackadapt.com/https://api.mapbox.com/https://www.google-analytics.com/https://googleads.g.doubleclick.net/https://ajax.googleapis.com/https://bigidcmp.cloud/https://cdn.jsdelivr.net/https://cdn.mouseflow.com/https://cdnjs.cloudflare.com/https://click.appcast.io/https://click.appcastinc.net/https://click.appcastincmaster.com/https://code.jquery.com/https://ct.pinterest.com/https://f.vimeocdn.com/https://js-na1.hs-scripts.com/https://js.adsrvr.org/https://js.hs-analytics.net/https://js.hs-banner.com/https://js.zi-scripts.com/https://optimize-pixel.jobadx.com/https://pfg.bayardextranet.com/https://player.vimeo.com/https://s.pinimg.com/https://secured-pixel.com/https://snap.licdn.com/https://static.cloudflareinsights.com/https://transcend-cdn.com/https://unpkg.com/https://widget.altrulabs.com/https://www.gstatic.com/https://www.youtube.com/'unsafe-inline'https://qvdt3feo.comhttps://analytics.talentegy.com/
script-src-attr 'self''inline'
style-src 'self''unsafe-inline'https://cdn.cookielaw.org/https://cdn.jsdelivr.net/https://cdnjs.cloudflare.com/https://fonts.googleapis.com/https://p.typekit.net/https://stackpath.bootstrapcdn.com/https://unpkg.com/
style-src-elem 'self''unsafe-inline''inline'https://*.typekit.net/https://tags.srv.stackadapt.com/https://api.mapbox.com/https://bigidcmp.cloud/https://cdn.cookielaw.org/https://cdn.jsdelivr.net/https://cdnjs.cloudflare.com/https://code.jquery.com/https://fonts.googleapis.com/https://jobs.tacobell.com/https://stackpath.bootstrapcdn.com/https://static.licdn.com/https://transcend-cdn.com/https://unpkg.com/
style-src-attr 'self''unsafe-inline''inline'https://cdnjs.cloudflare.com/
img-src 'self'data:blob:https://*.doubleclick.net/https://*.google.com/https://*.amazonaws.com/https://*.cloudfront.net/https://*.talentegy.com/https://cdn.cookielaw.org/https://i.vimeocdn.com/https://www.facebook.com/https://www.googletagmanager.com/https://i.ytimg.com/https://www.googleadservices.com/https://cdn-static.findly.com/https://c.clarity.ms/https://cdn-images-1.medium.com/https://cdn-us.altrulabs.com/https://cdn.cursor.style/https://cdn.jsdelivr.net/https://cdn.olivia.paradox.ai/https://cdnjs.cloudflare.com/https://click.appcast.io/https://connect.facebook.net/https://conv.indeed.com/https://fonts.gstatic.com/https://img.youtube.com/https://jobs.tacobell.com/https://pagead2.googlesyndication.com/https://pixel-prod.gotoro.io/https://px.ads.linkedin.com/https://secure.gravatar.com/https://track.hubspot.com/https://track.jobadx.com/https://www.brinkerjobs.com/https://www.google.com/
font-src 'self'data:https://fonts.gstatic.com/https://bigidcmp.cloud/https://cdn.altrulabs.com/https://cdn.cookielaw.org/https://cdn.jsdelivr.net/https://cdnjs.cloudflare.com/https://dokumfe7mps0i.cloudfront.net/https://r2cdn.perplexity.ai/https://stackpath.bootstrapcdn.com/https://use.fontawesome.com/https://use.typekit.net/
connect-src 'self'data:https://*.mapbox.com/https://*.onetrust.com/https://*.doubleclick.net/https://*.google.com/https://*.google-analytics.com/https://*.clarity.ms/https://*.altrulabs.com/https://*.bigidcmp.cloud/https://*.appcast.io/https://*.appcastinc.net/https://*.cloudfront.net/https://*.talentegy.com/https://cdn.cookielaw.org/https://tags.srv.stackadapt.com/https://pagead2.googlesyndication.com/https://www.googleadservices.com/https://www.googletagmanager.com/https://api.killadsapi.com/https://api.coralanalytic.com/https://api.privacy-protector-adblocker.com/https://bat.bing.net/https://cdn.jsdelivr.net/https://cdnjs.cloudflare.com/https://click.appcastincmaster.com/https://ct.pinterest.com/https://fonts.googleapis.com/https://fonts.gstatic.com/https://insight.adsrvr.org/https://olivia.paradox.ai/https://px.ads.linkedin.com/https://telemetry.transcend.io/https://transcend-cdn.com/https://us01.rec.mouseflow.com/https://usage-us.talentplatform.com/https://www.facebook.com/https://www.getgreatcareers.com/wss://click.appcast.io/wss://ws.paradox.ai/https://www.google.com/https://stats.g.doubleclick.net/https://analytics.google.com/https://api.mapbox.com/https://events.mapbox.com/
media-src 'self'data:https://*.altrulabs.com/https://dam.tacobell.com/
frame-src 'self''none'https://*.vimeo.com/https://*.adsrvr.org/https://*.google.com/https://www.youtube.com/https://www.googletagmanager.com/http://google.com/https://api.coralanalytic.com/https://bigidcmp.cloudhttps://chrome.aramark.paradox.ai/https://ct.pinterest.com/https://players.brightcove.net/https://useast-www.securly.com/https://www.facebook.com/https://www.youtube-nocookie.comhttps://player.vimeo.com/
frame-ancestors 'self''none'
base-uri 'self''about'
form-action 'self'https://www.facebook.com/https://www.chilisjobs.com/
object-src 'self''none'
worker-src 'self'blob:
report-to csp-endpoint
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 14 new-tab link(s) missing rel=noopener
REVIEW
3 of 14 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.
B
CSP Inline-Style Readiness
6 inline style attribute(s) detected
REVIEW
6 inline style attribute(s) detected
Info::
6 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. 6 inline style(s) is low. Affected element types include: div, iframe. 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.
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.
B
Referrer-Policy Strictness
Referrer-Policy header not set -- browser default applies (modern: strict-origin-when-cross-origin; legacy browsers: no-referrer-when-downgrade)
REVIEW
Referrer-Policy header not set -- browser default applies (modern: strict-origin-when-cross-origin; legacy browsers: no-referrer-when-downgrade)
Info::
Referrer-Policy header not set -- browser default applies
Without an explicit `Referrer-Policy` header, the browser falls back to its default policy. Modern browsers (Chrome 85+, Firefox 87+, Safari 15+) default to `strict-origin-when-cross-origin`, which is privacy-safe. Legacy browsers default to the leaky `no-referrer-when-downgrade`, which sends the full URL (including path + query) on cross-origin HTTPS-to-HTTPS requests. Set an explicit header to ensure consistent behavior: ``` Referrer-Policy: strict-origin-when-cross-origin ``` This matches the modern browser default and is privacy-safe without breaking referrer-based same-origin analytics.
Got: header absent
C
Permissions-Policy
Action
2 directives, 5 missing
REVIEW
2 directives, 5 missing
Info::
private-state-token-redemption=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com")
Info::
private-state-token-issuance=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com")
Info::
camera not restricted
Consider adding camera=() to block camera access from embedded content.
Info::
microphone not restricted
Consider adding microphone=() to block microphone access from embedded content.
Info::
geolocation not restricted
Consider adding geolocation=() to block geolocation access from embedded content.
Info::
payment not restricted
Consider adding payment=() to block payment access from embedded content.
Info::
usb not restricted
Consider adding usb=() to block usb access from embedded content.

Raw Header

private-state-token-redemption=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com") private-state-token-issuance=(self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com")

Feature Permissions

Blocked Self Only Unrestricted Not Set
private-state-token-redemption (self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com") (5 origins)
private-state-token-issuance (self "https://www.google.com" "https://www.gstatic.com" "https://recaptcha.net" "https://challenges.cloudflare.com" "https://hcaptcha.com") (5 origins)
camera Not Set
microphone Not Set
geolocation Not Set
payment Not Set
usb Not Set
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 78 days)
Got: 2026-07-27T15:27:08Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: ECDSA-SHA384
Info::
Certificate covers 1 domain(s)
Got: chilisjobs.com
Info::
Certificate is issued by a trusted CA
Got: CN=E7,O=Let's Encrypt,C=US

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

Why this matters

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

Learn more

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

Source: MDN Web Docs

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=chilisjobs.comIssuer CN=E7,O=Let's Encrypt,C=USValid 2026-04-28T15:27:09Z → 2026-07-27T15:27:08ZExpires in 78 days SANs chilisjobs.comSignature ECDSA-SHA384Serial 69d141f606414a83f656883335b4d98b545
Intermediate (CA Certificate)
Subject CN=E7,O=Let's Encrypt,C=USIssuer CN=ISRG Root X1,O=Internet Security Research Group,C=USValid 2024-03-13T00:00:00Z → 2027-03-12T23:59:59ZExpires in 306 days Signature SHA256-RSASerial aa75f1e62b8f0a220966d38bbfd4baa1
A+
Cookie Security
1 cookies analyzed, 2 checks passed
PASS
1 cookies analyzed, 2 checks passed
Info::
Cookie '__cf_bm' has the Secure flag
Info::
Cookie '__cf_bm' has the HttpOnly flag
Warning::
Cookie '__cf_bm' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
1 cookies analyzed 1 warnings
NameSecureHttpOnlySameSiteSizeIssues
__cf_bm206 B1
A
WAF / Bot Protection
Cloudflare
PASS
Cloudflare
Info::
Cloudflare detected
Detected via: cf-ray: 9f998df01e3eeb29-SJC
Got: Cloudflare
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+
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.
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