Skip to content
https://ottawacitizen.com

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
68
GRADE
D
FIX
4
REVIEW
2
PASS
6
INFO
0
Checks
12
6 PASS 2 REVIEW 4 FIX
F
Content Security Policy
Action
2 of 10 CSP checks passed
FIX
2 of 10 CSP checks passed
Info::
Raw CSP policy
Got: default-src * 'unsafe-eval' 'unsafe-inline' data: blob:
Info::
default-src directive is set
Got: default-src * 'unsafe-eval' 'unsafe-inline' data: blob:
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 * 'unsafe-eval' 'unsafe-inline' data: blob:
Critical::
'unsafe-eval' found in script source
'unsafe-eval' allows eval() and similar functions, enabling code injection. Remove it.
Got: script-src * 'unsafe-eval' 'unsafe-inline' data: blob:
Critical::
Wildcard '*' found in script source
A wildcard allows scripts from any origin, making CSP ineffective against XSS. Restrict to specific trusted origins.
Got: script-src * 'unsafe-eval' 'unsafe-inline' data: blob:
Info::
object-src falls back to default-src
Warning::
base-uri directive is missing
Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.
Expected: base-uri 'self'
Warning::
frame-ancestors directive is missing
frame-ancestors controls who can embed your page, preventing clickjacking. Set it to 'self' or 'none'.
Expected: frame-ancestors 'self'
Warning::
form-action directive is missing
form-action restricts where forms can submit data, preventing form hijacking.
Expected: form-action 'self'
Info::
upgrade-insecure-requests is not set
This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.
Expected: upgrade-insecure-requests

'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

A wildcard allows scripts from any origin, making CSP ineffective against XSS. Restrict to specific trusted origins.

Why this matters

script-src * defeats the entire point of CSP — any host can load scripts on your page.

Learn more

A wildcard in script-src (or its absence with no default-src) lets any origin host scripts your page will execute. The CSP header is present but provides no XSS protection. Replace with an explicit allowlist (your own domain plus specific CDN hosts) or use nonces/hashes for inline scripts.

Source: MDN CSP / OWASP

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

Expected: base-uri 'self'
Why this matters

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

Learn more

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

Source: MDN CSP

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

Expected: frame-ancestors 'self'
Why this matters

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

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

Expected: form-action 'self'
Why this matters

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

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 *'unsafe-eval''unsafe-inline'data:blob:
F
Subresource Integrity
Action
0 of 39 external resources have SRI
FIX
0 of 39 external resources have SRI
Warning::
External script from cdn.confiant-integrations.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.confiant-integrations.net/gptprebidnative/202603241056/wrap.js
Warning::
External script from launchpad.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad.privacymanager.io/latest/launchpad.bundle.js
Warning::
External script from launchpad.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad.privacymanager.io/latest/launchpad.bundle.js
Warning::
External script from nr-events.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //nr-events.taboola.com/newsroom/1.0/postmedia-ottawacitizen/get-action?page.url=https%3A%2F%2Fottawacitizen.com%2F&view.id=103984073279646862&page.template=home&page.dashboard=home
Warning::
External script from pm-widget.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pm-widget.taboola.com/postmedia1-network/load.js
Warning::
External script from gum.criteo.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //gum.criteo.com/sync?c=72&r=2&j=TRC.getRTUS
Warning::
External script from c2.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //c2.taboola.com/nr/postmedia-ottawacitizen/newsroom.js
Warning::
External script from cdn.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.taboola.com/libtrc/postmedia1-network/loader.js
Warning::
External script from sb.scorecardresearch.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sb.scorecardresearch.com/cs/10276888/beacon.js
Warning::
External script from kindhush.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://kindhush.com/files/nc64gx5/j032s.js
Warning::
External script from www.npttech.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //www.npttech.com/advertising.js
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=Roboto+Condensed:700%7CRoboto:400,700&display=swap
Warning::
External link from dcs-static.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dcs-static.gprod.postmedia.digital/21.0.2/websites/css/layout.min.css
Warning::
External link from dcs-static.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dcs-static.gprod.postmedia.digital/21.0.2/websites/css/styles-broadsheets-global.min.css
Warning::
External link from dcs-static.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dcs-static.gprod.postmedia.digital/21.0.2/websites/css/styles-broadsheets-global-ugc.min.css
Warning::
External link from dcs-static.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dcs-static.gprod.postmedia.digital/21.0.2/websites/css/styles-broadsheets-category.min.css
Warning::
External script from fem.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fem.gprod.postmedia.digital/v141.0/fem.js
Warning::
External script from tags.qortex.ai lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.qortex.ai/bootstrapper?group-id=kncjQ7WgE0C9r0nZcmGUg&video-container=jw-qortex-target|cnx-main-container&continuous-load=true
Warning::
External script from cdn-gateflipp.flippback.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-gateflipp.flippback.com/tag/js/flipptag.js?site_id= 1179443
Warning::
External script from tags.qortex.ai lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.qortex.ai/cxo/cx-bootstrapper-init
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 23dc09d6-b664-425a-a76e-0eed6a6cc102.edge.permutive.app lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://23dc09d6-b664-425a-a76e-0eed6a6cc102.edge.permutive.app/23dc09d6-b664-425a-a76e-0eed6a6cc102-web.js
Warning::
External script from launchpad-wrapper.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad-wrapper.privacymanager.io/0787f10e-ca64-4393-8cda-1b8744767af9/launchpad-liveramp.js
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://c.amazon-adsystem.com/aax2/apstag.js
Warning::
External script from fem.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fem.gprod.postmedia.digital/v141.0/IIQUniversalID.js
Warning::
External script from micro.rubiconproject.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://micro.rubiconproject.com/prebid/dynamic/14648.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/m202604200101/pubads_impl.js?cb=31098007
Warning::
External script from config.aps.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://config.aps.amazon-adsystem.com/configs/3528
Warning::
External script from launchpad-wrapper.privacymanager.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://launchpad-wrapper.privacymanager.io/0787f10e-ca64-4393-8cda-1b8744767af9/launchpad-liveramp.js
Warning::
External script from secure.cdn.fastclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //secure.cdn.fastclick.net/js/pubcid/latest/pubcid.min.js
Warning::
External script from tags.crwdcntrl.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.crwdcntrl.net/lt/c/16576/sync.min.js
Warning::
External script from cdn.confiant-integrations.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.confiant-integrations.net/dqzP001U6CvfmEQNxKTyCMgOlPA/gpt_and_prebid/config.js
Warning::
External script from cdn.id5-sync.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.id5-sync.com/api/1.0/id5-api.js
Warning::
External script from fem.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://fem.gprod.postmedia.digital/v141.0/chunks/e747d4e039e9e6ce5977.js
Warning::
External script from pm-widget.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pm-widget.taboola.com/postmedia1-network/pmk-20220605.3.js
Warning::
External script from ak.sail-horizon.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ak.sail-horizon.com/spm/spm.v1.min.js
Warning::
External script from auth.lrcontent.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://auth.lrcontent.com/v2/js/LoginRadiusV2.js
Warning::
External script from edge-auth.microsoft.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://edge-auth.microsoft.com/js/ms_auth_client.min.js
Warning::
External script from dcs-static.gprod.postmedia.digital lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dcs-static.gprod.postmedia.digital/21.0.2/websites/js/main.min.js
SRI Coverage 0 / 39 of external resources have integrity hashes
TagDomainIntegrity
<script>cdn.confiant-integrations.net Missing
<script>launchpad.privacymanager.io Missing
<script>launchpad.privacymanager.io Missing
<script>nr-events.taboola.com Missing
<script>pm-widget.taboola.com Missing
<script>gum.criteo.com Missing
<script>c2.taboola.com Missing
<script>cdn.taboola.com Missing
<script>sb.scorecardresearch.com Missing
<script>kindhush.com Missing
<script>www.npttech.com Missing
<link>fonts.googleapis.com Missing
<link>dcs-static.gprod.postmedia.digital Missing
<link>dcs-static.gprod.postmedia.digital Missing
<link>dcs-static.gprod.postmedia.digital Missing
<link>dcs-static.gprod.postmedia.digital Missing
<script>fem.gprod.postmedia.digital Missing
<script>tags.qortex.ai Missing
<script>cdn-gateflipp.flippback.com Missing
<script>tags.qortex.ai Missing
<script>securepubads.g.doubleclick.net Missing
<script>23dc09d6-b664-425a-a76e-0eed6a6cc102.edge.permutive.app Missing
<script>launchpad-wrapper.privacymanager.io Missing
<script>c.amazon-adsystem.com Missing
<script>fem.gprod.postmedia.digital Missing
<script>micro.rubiconproject.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>config.aps.amazon-adsystem.com Missing
<script>launchpad-wrapper.privacymanager.io Missing
<script>secure.cdn.fastclick.net Missing
<script>tags.crwdcntrl.net Missing
<script>cdn.confiant-integrations.net Missing
<script>cdn.id5-sync.com Missing
<script>fem.gprod.postmedia.digital Missing
<script>pm-widget.taboola.com Missing
<script>ak.sail-horizon.com Missing
<script>auth.lrcontent.com Missing
<script>edge-auth.microsoft.com Missing
<script>dcs-static.gprod.postmedia.digital Missing
D
Email Security
Action
DMARC: none
FIX
DMARC: none
Warning::
DMARC policy is none — monitoring only
This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.
DMARC
Policy none — monitoring only, does not block spoofing Record v=DMARC1; p=none; fo=1; rua=mailto:dmarc_rua@emaildefense.proofpoint.com; ruf=mailto:dmarc_ruf@emaildefense.proofpoint.com

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

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

D
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

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

C
Permissions-Policy
Action
8 directives, 1 missing
REVIEW
8 directives, 1 missing
Info::
autoplay=(*)
Info::
camera=(*)
Info::
display-capture=(*)
Info::
encrypted-media=(*)
Info::
fullscreen=(*)
Info::
geolocation=(*)
Info::
microphone=(*)
Info::
payment=(*)
Info::
usb not restricted
Consider adding usb=() to block usb access from embedded content.

Raw Header

autoplay=(*) camera=(*) display-capture=(*) encrypted-media=(*) fullscreen=(*) geolocation=(*) microphone=(*) payment=(*)

Feature Permissions

Blocked Self Only Unrestricted Not Set
autoplay (*)
camera (*)
display-capture (*)
encrypted-media (*)
fullscreen (*)
geolocation (*)
microphone (*)
payment (*)
usb Not Set
C
CORS Configuration
Action
Origin: *
REVIEW
Origin: *
Info::
Access-Control-Allow-Origin: * — unrestricted
Any website can read this resource's response. Appropriate for public APIs but not for user-specific content.
Info::
Origin reflection not testable with a single request
Some servers reflect the request Origin header. This requires manual testing with a crafted Origin header.
CORS Configuration Permissive
Allow-Origin *

Any website can read responses from this resource.

HeaderValueStatus
Access-Control-Allow-Origin*

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
Security Headers
7 of 10 headers properly configured
PASS
7 of 10 headers properly configured
Warning::
HSTS is missing includeSubDomains
Without includeSubDomains, subdomains can still be accessed over HTTP.
Got: max-age=31536000 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: strict-origin-when-cross-origin
Info::
Permissions-Policy is set
Got: autoplay=(*), camera=(*), display-capture=(*), encrypted-media=(*), fullscreen=(*), geolocation=(*), microphone=(*), payment=(*)
Info::
Content-Security-Policy is present
Got: default-src * 'unsafe-eval' 'unsafe-inline' data: blob:
Info::
Cross-Origin-Opener-Policy is set but not 'same-origin'
Got: same-origin-allow-popups 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: istio-envoy

Without includeSubDomains, subdomains can still be accessed over HTTP.

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

Without includeSubDomains, a forgotten dev subdomain over HTTP can set malicious cookies that ride to the apex.

Learn more

HSTS without includeSubDomains protects only the exact domain. Cookies set on a non-HSTS subdomain can ride to the apex via cookie-scope attacks. The fix is one directive append. Verify all subdomains support HTTPS first — adding includeSubDomains to a domain with HTTP-only subdomains breaks them.

Source: RFC 6797

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

Expected: same-origin
Why this matters

COOP is set to a less-restrictive value (same-origin-allow-popups or unsafe-none) — partial isolation only.

Learn more

COOP: same-origin is the strictest level. same-origin-allow-popups allows authenticated popup windows back to your origin. unsafe-none is the legacy default (effectively off). Pick the strictest level your app's popup flows tolerate.

Source: MDN COOP

A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_128_GCM_SHA256
Info::
HTTP/2 is not negotiated
HTTP/2 provides multiplexing and header compression for better performance.
Got: http/1.1
Info::
Certificate is valid (expires in 70 days)
Got: 2026-07-02T07:29:41Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 2 domain(s)
Got: ottawacitizen.com, *.ottawacitizen.com
Info::
Certificate is issued by a trusted CA
Got: CN=WR3,O=Google Trust Services,C=US

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

Why this matters

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

Learn more

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

Source: MDN Web Docs

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

Certificate Chain

Leaf Certificate
Subject CN=ottawacitizen.comIssuer CN=WR3,O=Google Trust Services,C=USValid 2026-04-03T06:33:46Z → 2026-07-02T07:29:41ZExpires in 70 days SANs ottawacitizen.com, *.ottawacitizen.comSignature SHA256-RSASerial fc2d1a364fdd75a1103ed32420c5ff57
Intermediate (CA Certificate)
Subject CN=WR3,O=Google Trust Services,C=USIssuer CN=GTS Root R1,O=Google Trust Services LLC,C=USValid 2023-12-13T09:00:00Z → 2029-02-20T14:00:00ZExpires in 1034 days Signature SHA256-RSASerial 7ff005a91568d63abc22861684aa4b5a
Intermediate (CA Certificate)
Subject CN=GTS Root R1,O=Google Trust Services LLC,C=USIssuer CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BEValid 2020-06-19T00:00:42Z → 2028-01-28T00:00:42ZExpires in 645 days Signature SHA256-RSASerial 77bd0d6cdb36f91aea210fc4f058d30d
A+
Cookie Security
No cookies set — no cookie security risks
PASS
No cookies set — no cookie security risks
Info::
No cookies set — no cookie security risks

No cookies detected — no cookie security risks to report.

A+
JS Library Vulnerabilities
No known vulnerabilities
PASS
No known vulnerabilities
Info::
No known JavaScript library vulnerabilities detected

No known JavaScript library vulnerabilities detected.

A+
Information Leakage
No exposures
PASS
No exposures
Info::
No security.txt found
Consider adding a security.txt at /.well-known/security.txt.
Info::
No sensitive files exposed

No sensitive files exposed — all paths returned 404.

PathStatusCategoryRisk
/.git/HEAD Not foundVersion Control
/.git/config Not foundVersion Control
/.svn/entries Not foundVersion Control
/.env Not foundConfiguration
/.env.local Not foundConfiguration
/.env.production Not foundConfiguration
/wp-config.php Not foundConfiguration
/.htaccess Not foundConfiguration
/phpinfo.php Not foundDebug
/server-status Not foundDebug
/server-info Not foundDebug
/.well-known/security.txt Not foundSecurity Policy
A+
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Info::
HSTS enabled (base policy)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback