Skip to content
https://tampabay.com

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
71
GRADE
C
FIX
4
REVIEW
3
PASS
5
INFO
0
Checks
12
5 PASS 3 REVIEW 4 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
Warning::
Permissions-Policy header is missing
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
Expected: geolocation=(), camera=(), microphone=()
Info::
Content-Security-Policy is present
Got: upgrade-insecure-requests
Warning::
Cross-Origin-Opener-Policy header is missing
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: AkamaiGHost

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

Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.

Expected: geolocation=(), camera=(), microphone=()
Why this matters

Permissions-Policy locks down browser APIs you don't use — without it, every page can request camera/mic/geolocation if XSS lands.

Learn more

By default every page can request the camera, microphone, geolocation, payment APIs, and dozens more. Permissions-Policy turns off the ones you don't need so a future bug can't quietly start using them. It's a defense-in-depth header — one line, big surface reduction.

Source: MDN / W3C

COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.

Expected: same-origin
Why this matters

COOP isolates your top-level browsing context from cross-origin windows — without it, popup-based side-channel attacks remain possible.

Learn more

Cross-Origin-Opener-Policy: same-origin prevents cross-origin pages from sharing a browsing-context group with yours. This blocks cross-window references that enable Spectre-style timing attacks and tab-nabbing. Required if you want to enable SharedArrayBuffer.

Source: MDN / web.dev

COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.

Expected: require-corp
Why this matters

COEP enforces that all embedded resources opt-in to cross-origin embedding — required for cross-origin isolation features.

Learn more

Cross-Origin-Embedder-Policy: require-corp ensures every embedded resource (script, iframe, image) explicitly allows being loaded cross-origin. Combined with COOP, this enables the cross-origin-isolated context that unlocks SharedArrayBuffer, high-resolution timers, and other powerful APIs.

Source: MDN / web.dev

F
Subresource Integrity
Action
0 of 50 external resources have SRI
FIX
0 of 50 external resources have SRI
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-M5XPJDT&l=MG2DL
Warning::
External script from www.google-analytics.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google-analytics.com/analytics.js
Warning::
External script from de.tynt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://de.tynt.com/deb/v2?id=rc!&dn=AFRC&cc=1&chuav=Chromium%3Bv%3D147.0.7727.101%2C%20Not.A%2FBrand%3Bv%3D8.0.0.0&chp=Linux&chmob=0&chua=Chromium%3Bv%3D147%2C%20Not.A%2FBrand%3Bv%3D8&r=&pu=https%3A%2F%2Fwww.tampabay.com%2F
Warning::
External script from singroot.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://singroot.com/scripts/r4063p3u5e7f552f4uvs5zms_g7fak31fqm/ConsentManager,Sticky2
Warning::
External script from www.youtube.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.youtube.com/s/player/218d9d92/www-widgetapi.vflset/www-widgetapi.js
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.59/clarity.js
Warning::
External script from www.youtube.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.youtube.com/iframe_api
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/spn91capql
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=UA-65806319-2&cx=c&gtm=4e64h1
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-WCNWZV6&gtm_auth=BRkJvojeXANP9drgnJtSbw&gtm_preview=env-2&gtm_cookies_win=x
Warning::
External script from singroot.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://singroot.com/v2udjvv9FsURHtwXH7wIL3pa3sAeCep6bPPgOzBIf66eNyA-KvkHDfkCB_InzLyKdozBcBH3j
Warning::
External script from singroot.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://singroot.com/v2hgbOGYVmHTZW6B5NHJYxjvMs6ryy1eKSmw2svIZU8ECfpd4cvnBPgY
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/marfeel-sdk.es5.js?id=5414
Warning::
External script from sdk.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sdk.mrf.io/statics/marfeel-sdk.js?id=5414
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //c.amazon-adsystem.com/aax2/apstag.js
Warning::
External script from dyv1bugovvq1g.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://dyv1bugovvq1g.cloudfront.net/12/www.tampabay.com/.js
Warning::
External script from securepubads.g.doubleclick.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://securepubads.g.doubleclick.net/tag/js/gpt.js
Warning::
External script from cdn.embedly.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.embedly.com/widgets/platform.js
Warning::
External script from prodmg2.blob.core.windows.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://prodmg2.blob.core.windows.net/newsletterwidget/tampabay/MG2Widget-newsletterwidget.min.js
Warning::
External script from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnjs.cloudflare.com/ajax/libs/stickyfill/2.1.0/stickyfill.min.js
Warning::
External script from s.ntv.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.ntv.io/serve/load.js
Warning::
External script from cdn.p-n.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.p-n.io/pushly-sdk.min.js
Warning::
External script from d15kdpgjg3unno.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d15kdpgjg3unno.cloudfront.net/oPS.js?cid=12
Warning::
External script from cdn.viafoura.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.viafoura.net/entry/index.js
Warning::
External script from cdn.auth0.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.auth0.com/js/auth0-spa-js/2.0/auth0-spa-js.production.js
Warning::
External script from cdn.sophi.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.sophi.io/assets/demeter/1/stable/3372937438.js
Warning::
External script from assets.zephr.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://assets.zephr.com/zephr-browser/1.7.1/zephr-browser.umd.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 cdn-clavis-tbt-prod.arc-perso.aws.arc.pub lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn-clavis-tbt-prod.arc-perso.aws.arc.pub/clavis.main.js.gz
Warning::
External script from c.amazon-adsystem.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //c.amazon-adsystem.com/aax2/apstag.js
Warning::
External script from s.go-mpulse.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://s.go-mpulse.net/boomerang/D9ST8-XQAM6-R3WA7-2CDJT-8H26W
Warning::
External script from jadserve.postrelease.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://jadserve.postrelease.com/t?ntv_mvi=&ntv_url=https%253A%252F%252Fwww.tampabay.com%252F
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/a0851ccc-3899-43a2-87b3-e092f81fbf4d
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/m202604170101/pubads_impl.js?cb=31097946
Warning::
External script from cdn.tynt.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.tynt.com/afrc.js
Warning::
External script from ads.pubmatic.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://ads.pubmatic.com/AdServer/js/pwt/160835/4933/pwt.js
Warning::
External script from az416426.vo.msecnd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://az416426.vo.msecnd.net/scripts/a/ai.0.js
Warning::
External script from cdn.2i01xq7naxu1.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.2i01xq7naxu1.com/prod/tampabay/fp.min.js?2026321
Warning::
External script from cdn.sy57d8wi.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.sy57d8wi.com/prod/tampabay/g2i.min.js?2026321
Warning::
External script from cdn.y5kvsuy8wr7c.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.y5kvsuy8wr7c.com/prod/tampabay/t8y9347t.min.js?2026321
Warning::
External link from cdn.y5kvsuy8wr7c.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.y5kvsuy8wr7c.com/prod/tampabay/t8y9347t.min.css?2026321
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?id=AC_NKtdHAf0SxSiNy2cDU_Jsw&experimentType=HeadlineAB&version=esnext
Warning::
External script from marfeelexperimentsexperienceengine.mrf.io lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://marfeelexperimentsexperienceengine.mrf.io/experimentsexperience/render?id=AC_NKtdHAf0SxSiNy2cDU_Jsw&experimentType=HeadlineAB&version=legacy
Warning::
External script from az416426.vo.msecnd.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://az416426.vo.msecnd.net/scripts/a/ai.0.js
Warning::
External script from cdn.pranmcpkx.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn.pranmcpkx.com/index.js
Warning::
External script from delivery.revcontent.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://delivery.revcontent.com/85162/284336/widget.js
Warning::
External script from cdn.wgchrrammzv.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.wgchrrammzv.com/prod/tampabay/loader.min.js
Warning::
External script from prodmg2.blob.core.windows.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://prodmg2.blob.core.windows.net/newsletterwidget/tampabay/MG2Widget-newsletterwidget.min.js
Warning::
External script from cdn.insurads.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.insurads.com/bootstrap/PI88ZQYO.js
Warning::
External script from cdn-4.convertexperiments.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdn-4.convertexperiments.com/v1/js/10017610-10018599.js?environment=production
SRI Coverage 0 / 50 of external resources have integrity hashes
TagDomainIntegrity
<script>www.googletagmanager.com Missing
<script>www.google-analytics.com Missing
<script>de.tynt.com Missing
<script>singroot.com Missing
<script>www.youtube.com Missing
<script>scripts.clarity.ms Missing
<script>www.youtube.com Missing
<script>www.clarity.ms Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>singroot.com Missing
<script>singroot.com Missing
<script>sdk.mrf.io Missing
<script>sdk.mrf.io Missing
<script>c.amazon-adsystem.com Missing
<script>dyv1bugovvq1g.cloudfront.net Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.embedly.com Missing
<script>prodmg2.blob.core.windows.net Missing
<script>cdnjs.cloudflare.com Missing
<script>s.ntv.io Missing
<script>cdn.p-n.io Missing
<script>d15kdpgjg3unno.cloudfront.net Missing
<script>cdn.viafoura.net Missing
<script>cdn.auth0.com Missing
<script>cdn.sophi.io Missing
<script>assets.zephr.com Missing
<script>ak.sail-horizon.com Missing
<script>cdn-clavis-tbt-prod.arc-perso.aws.arc.pub Missing
<script>c.amazon-adsystem.com Missing
<script>s.go-mpulse.net Missing
<script>jadserve.postrelease.com Missing
<script>config.aps.amazon-adsystem.com Missing
<script>securepubads.g.doubleclick.net Missing
<script>cdn.tynt.com Missing
<script>ads.pubmatic.com Missing
<script>az416426.vo.msecnd.net Missing
<script>cdn.2i01xq7naxu1.com Missing
<script>cdn.sy57d8wi.com Missing
<script>cdn.y5kvsuy8wr7c.com Missing
<link>cdn.y5kvsuy8wr7c.com Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>marfeelexperimentsexperienceengine.mrf.io Missing
<script>az416426.vo.msecnd.net Missing
<script>cdn.pranmcpkx.com Missing
<script>delivery.revcontent.com Missing
<script>cdn.wgchrrammzv.com Missing
<script>prodmg2.blob.core.windows.net Missing
<script>cdn.insurads.com Missing
<script>cdn-4.convertexperiments.com Missing
D
Permissions-Policy
Action
No header set
FIX
No header set
Warning::
No Permissions-Policy header
Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

No Permissions-Policy header set.

Without this header, embedded iframes can request access to sensitive device features.

Suggested header
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
D
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

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

C
Content Security Policy
Action
2 of 10 CSP checks passed
REVIEW
2 of 10 CSP checks passed
Info::
Raw CSP policy
Got: upgrade-insecure-requests
Warning::
default-src directive is missing
default-src provides a fallback for other directives. Set it to restrict default resource loading.
Expected: default-src 'self'
Info::
No script-src or default-src to check for 'unsafe-inline'
Info::
No script-src or default-src to check for 'unsafe-eval'
Info::
No script-src or default-src to check for wildcard
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 enabled

default-src provides a fallback for other directives. Set it to restrict default resource loading.

Expected: default-src 'self'
Why this matters

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

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.

Parsed Policy

upgrade-insecure-requests
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
B
Transport Security
HTTP/3, HSTS, and TLS version analysis
REVIEW
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) not advertised
HTTP/3 eliminates head-of-line blocking. If your CDN supports it, consider enabling it.
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)
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_256_GCM_SHA384
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 85 days)
Got: 2026-07-16T12:39:11Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 8 domain(s)
Got: project.tampabay.com, staging.tampabay.com, tampabay.com, tbt.web.arc-cdn.net, www.floridatrend.com, www.tampabay.com, www.tampabaybeacons.com, www.tampabaytest.com
Info::
Certificate is issued by a trusted CA
Got: CN=R12,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

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

Certificate Chain

Leaf Certificate
Subject CN=tbt.web.arc-cdn.netIssuer CN=R12,O=Let's Encrypt,C=USValid 2026-04-17T12:39:12Z → 2026-07-16T12:39:11ZExpires in 85 days SANs project.tampabay.com, staging.tampabay.com, tampabay.com, tbt.web.arc-cdn.net, www.floridatrend.com, www.tampabay.com, www.tampabaybeacons.com, www.tampabaytest.comSignature SHA256-RSASerial 5c33771ac708923370b906d95351110bf0d
Intermediate (CA Certificate)
Subject CN=R12,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 325 days Signature SHA256-RSASerial c212324b70a9b49171dc40f7e285263c
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+
Email Security
DMARC: reject
PASS
DMARC: reject
Info::
DMARC policy is reject — strongest protection
DMARC
Policy reject — strongest protection Record v=DMARC1; p=reject; rua=mailto:b107d48f@mxtoolbox.dmarc-report.com,mailto:mgiancola@vology.com; ruf=mailto:b107d48f@forensics.dmarc-report.com,mailto:mgiancola@vology.com; fo=1
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback