Security
· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.DSecurity HeadersAction4 of 10 headers properly configuredFIX
This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.
nosniffMIME 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.
DENYWithout 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.
strict-origin-when-cross-originDefault browser behavior leaks full URLs (including query params and tokens) to every third-party resource — set a strict policy.
Learn more ▾ ▴
Without a Referrer-Policy header, browsers send the full referring URL with images, scripts, and fonts loaded from third-party origins. URLs containing tokens, user IDs, or session params end up in third-party logs. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter) to limit leakage.
Source: MDN / W3C
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
geolocation=(), camera=(), microphone=()Permissions-Policy locks down browser APIs you don't use — without it, every page can request camera/mic/geolocation if XSS lands.
Learn more ▾ ▴
By default every page can request the camera, microphone, geolocation, payment APIs, and dozens more. Permissions-Policy turns off the ones you don't need so a future bug can't quietly start using them. It's a defense-in-depth header — one line, big surface reduction.
Source: MDN / W3C
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
same-originCOOP 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.
require-corpCOEP 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
FContent Security PolicyAction3 of 10 CSP checks passedFIX
'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.
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.
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.
object-src 'none'object-src open in CSP allows Flash/PDF/plugin embedding — a now-deprecated attack vector that should be explicitly blocked.
Learn more ▾ ▴
object-src controls <object>, <embed>, and <applet> elements. Modern sites have no need for plugins; setting `object-src 'none'` blocks an entire class of legacy XSS vectors at zero cost. If your CSP missed it, add the directive.
Source: MDN CSP
Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.
base-uri 'self'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'.
frame-ancestors 'self'Security gaps expose your site and users to attacks, eroding trust.
form-action restricts where forms can submit data, preventing form hijacking.
form-action 'self'Security gaps expose your site and users to attacks, eroding trust.
Parsed Policy
FSubresource IntegrityAction0 of 107 external resources have SRIFIX
| Tag | Domain | Integrity |
|---|---|---|
| <script> | www.googletagmanager.com | ✗ Missing |
| <script> | sb.scorecardresearch.com | ✗ Missing |
| <script> | nexus.ensighten.com | ✗ Missing |
| <script> | nexus.ensighten.com | ✗ Missing |
| <script> | rules.quantcount.com | ✗ Missing |
| <script> | launchpad.privacymanager.io | ✗ Missing |
| <script> | tagan.adlightning.com | ✗ Missing |
| <script> | tagan.adlightning.com | ✗ Missing |
| <script> | nexus.ensighten.com | ✗ Missing |
| <script> | sdk.mrf.io | ✗ Missing |
| <script> | sdk.mrf.io | ✗ Missing |
| <script> | secure.quantserve.com | ✗ Missing |
| <script> | www.googletagmanager.com | ✗ Missing |
| <script> | www.googletagmanager.com | ✗ Missing |
| <script> | js.matheranalytics.com | ✗ Missing |
| <script> | thebestpaints.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <link> | htlbid.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <link> | fonts.googleapis.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <link> | cdn.jsdelivr.net | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | cmp.osano.com | ✗ Missing |
| <script> | ajax.googleapis.com | ✗ Missing |
| <script> | htlbid.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | az416426.vo.msecnd.net | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | cdn.auth0.com | ✗ Missing |
| <script> | accounts.google.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | f703.twincities.com | ✗ Missing |
| <script> | prodmg2.blob.core.windows.net | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | cdn.sophi.io | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <link> | www.twincities.com | ✗ Missing |
| <script> | fp.twincities.com | ✗ Missing |
| <script> | g2i.twincities.com | ✗ Missing |
| <script> | engage.twincities.com | ✗ Missing |
| <link> | engage.twincities.com | ✗ Missing |
| <script> | cdn-p.cityspark.com | ✗ Missing |
| <link> | accounts.google.com | ✗ Missing |
| <script> | cds.connatix.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | securepubads.g.doubleclick.net | ✗ Missing |
| <script> | tagan.adlightning.com | ✗ Missing |
| <script> | launchpad-wrapper.privacymanager.io | ✗ Missing |
| <script> | raven-edge.aditude.io | ✗ Missing |
| <script> | c.amazon-adsystem.com | ✗ Missing |
| <script> | marfeelexperimentsexperienceengine.mrf.io | ✗ Missing |
| <script> | marfeelexperimentsexperienceengine.mrf.io | ✗ Missing |
| <script> | cdn.sophi.io | ✗ Missing |
| <script> | googleads.g.doubleclick.net | ✗ Missing |
| <script> | sdk.mrf.io | ✗ Missing |
| <script> | sdk.mrf.io | ✗ Missing |
| <script> | jadserve.postrelease.com | ✗ Missing |
| <script> | d15kdpgjg3unno.cloudfront.net | ✗ Missing |
| <script> | raven-static.aditude.io | ✗ Missing |
| <script> | securepubads.g.doubleclick.net | ✗ Missing |
| <script> | ads.pubmatic.com | ✗ Missing |
| <script> | config.aps.amazon-adsystem.com | ✗ Missing |
| <script> | fundingchoicesmessages.google.com | ✗ Missing |
| <script> | secure.cdn.fastclick.net | ✗ Missing |
| <script> | cdn-ima.33across.com | ✗ Missing |
| <script> | cdn.id5-sync.com | ✗ Missing |
| <script> | secure.cdn.fastclick.net | ✗ Missing |
| <script> | secure.cdn.fastclick.net | ✗ Missing |
| <script> | fundingchoicesmessages.google.com | ✗ Missing |
| <script> | static.criteo.net | ✗ Missing |
| <script> | cdn.mgaru.dev | ✗ Missing |
| <script> | tags.crwdcntrl.net | ✗ Missing |
| <script> | cdn.jsdelivr.net | ✗ Missing |
| <script> | oa.openxcdn.net | ✗ Missing |
| <script> | connectid.analytics.yahoo.com | ✗ Missing |
| <script> | ads.pubmatic.com | ✗ Missing |
| <script> | cdn.id5-sync.com | ✗ Missing |
| <script> | invstatic101.creativecdn.com | ✗ Missing |
| <script> | fundingchoicesmessages.google.com | ✗ Missing |
| <script> | secure.cdn.fastclick.net | ✗ Missing |
| <script> | cdn.jsdelivr.net | ✗ Missing |
| <script> | az416426.vo.msecnd.net | ✗ Missing |
| <script> | connext-fd-gnbrate4fjhjb3f7.z01.azurefd.net | ✗ Missing |
| <script> | cdn.adapex.io | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | cdn.parsely.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | s.ntv.io | ✗ Missing |
| <script> | applepay.cdn-apple.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | stats.wp.com | ✗ Missing |
| <script> | cdn.p-n.io | ✗ Missing |
| <script> | delivery.revcontent.com | ✗ Missing |
| <script> | www.twincities.com | ✗ Missing |
| <script> | cdn.cityspark.com | ✗ Missing |
| <script> | nexus.ensighten.com | ✗ Missing |
| <script> | b-code.liadm.com | ✗ Missing |
| <script> | www.googletagmanager.com | ✗ Missing |
DEmail SecurityActionDMARC: noneFIX
This only monitors, it doesn't block spoofed emails. Change to p=quarantine or p=reject.
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
DPermissions-PolicyActionNo header setFIX
No Permissions-Policy header set.
Without this header, embedded iframes can request access to sensitive device features.
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
Dsecurity.txtActionNo /.well-known/security.txt publishedFIX
security.txt
No security.txt found at /.well-known/security.txt
BCORS ConfigurationNo CORS headersREVIEW
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 & CertificatesTLS 1.3, 7 checks passedPASS
HTTP/2 provides multiplexing and header compression for better performance.
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
Certificate Chain
A+JS Library VulnerabilitiesNo known vulnerabilitiesPASS
No known JavaScript library vulnerabilities detected.
A+Information LeakageNo exposuresPASS
No sensitive files exposed — all paths returned 404.
| Path | Status | Category | Risk |
|---|---|---|---|
| /.git/HEAD | ✓ Not found | Version Control | — |
| /.git/config | ✓ Not found | Version Control | — |
| /.svn/entries | ✓ Not found | Version Control | — |
| /.env | ✓ Not found | Configuration | — |
| /.env.local | ✓ Not found | Configuration | — |
| /.env.production | ✓ Not found | Configuration | — |
| /wp-config.php | ✓ Not found | Configuration | — |
| /.htaccess | ✓ Not found | Configuration | — |
| /phpinfo.php | ✓ Not found | Debug | — |
| /server-status | ✓ Not found | Debug | — |
| /server-info | ✓ Not found | Debug | — |
| /.well-known/security.txt | ✓ Not found | Security Policy | — |