Skip to content
https://foxsports.com

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
65
GRADE
D
FIX
5
REVIEW
3
PASS
5
INFO
0
Checks
13
5 PASS 3 REVIEW 5 FIX
F
Security Headers
Action
2 of 10 headers properly configured
FIX
2 of 10 headers properly configured
Warning::
HSTS max-age is too short (600s, should be ≥ 31536000s)
A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).
Got: max-age=600 ; preload 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=()
Critical::
Content-Security-Policy header is missing
CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.
Expected: default-src 'self'
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

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

Expected: default-src 'self'
Why this matters

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

Learn more

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

Source: OWASP / MDN

A short max-age leaves a window for downgrade attacks. Set max-age to at least 31536000 (1 year).

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

Short HSTS max-age leaves a downgrade-attack window every time the cache expires — set ≥ 1 year.

Learn more

max-age below 31536000 (1 year) is below industry recommendation. The browser forgets the HSTS policy and re-exposes first-visit downgrade attacks. Set to 63072000 (2 years) and add `includeSubDomains; preload` to qualify for the HSTS preload list.

Source: RFC 6797 / hstspreload.org

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
Content Security Policy
Action
No enforcing CSP policy found
FIX
No enforcing CSP policy found
Critical::
No Content-Security-Policy header found
CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.
Expected: default-src 'self'

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

Expected: default-src 'self'
Why this matters

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

Learn more

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

Source: OWASP / MDN

D
Subresource Integrity
Action
1 of 69 external resources have SRI
FIX
1 of 69 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/gtag/js?id=G-0B25ZK3BYS&cx=c&gtm=4e64h1h1
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 sb.scorecardresearch.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://sb.scorecardresearch.com/cs/6035208/beacon.js
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/integrations/adobe-analytics/appmeasurement-2.23.1-heartbeat.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-PXWMD2P&l=dataLayer
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-862037388
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/vendor/commons.59560acdd69ed701c941.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/twitter-ads/2.5.4/twitter-ads.dynamic.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/comscore/3.0.0/comscore.dynamic.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/adobe-analytics/1.18.0/adobe-analytics.dynamic.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/google-tag-manager/2.5.3/google-tag-manager.dynamic.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/integrations/google-adwords-new/1.3.0/google-adwords-new.dynamic.js.gz
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/next-integrations/actions/amplitude-plugins/f12a4347e1080fb88155.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=G-58Q95H24XC&l=ocConnectWidgetTracker&cx=c&gtm=4e64h1
Warning::
External script from vidstat.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //vidstat.taboola.com/lite-unit/5.7.0/UnitFeedManagerDesktop.min.js
Warning::
External script from vidstat.taboola.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //vidstat.taboola.com/lite-unit/5.7.0/UnitWidgetItemDesktop.min.js
Warning::
External script from www.knotch-cdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.knotch-cdn.com/ktag/latest/ktag.min.js?accountId=0c1098d4-e85c-41fd-be56-6189d39234c9
Info::
script from www.gstatic.com has SRI protection
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-PK78SWB&l=ocConnectWidgetTracker
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/foxsports1/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 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 cdn.us.heap-api.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.us.heap-api.com/v5/heapjs-static/5.3.12/core/heap.js
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://tags.tiqcdn.com/utag/foxcorp/fscom-main/prod/utag.js
Warning::
External script from cdn.segment.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.segment.com/analytics.js/v1/nZKOCs4zQ7sYYrXWnMX12o0ZzMijA5Yj/analytics.min.js
Warning::
External script from mssl.fwmrm.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://mssl.fwmrm.net/libs/adm/6.55.0/AdManager.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/foxsports1/loader.js
Warning::
External script from statics.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://statics.foxsports.com/static/orion/js/freewheel-ads.js
Warning::
External script from cdn.us.heap-api.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.us.heap-api.com/config/479232849/heap_config.js
Warning::
External script from global.ketchcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://global.ketchcdn.com/web/v3/config/fds/fox_sports_web_fscom/boot.js
Warning::
External script from cdn.amplitude.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.amplitude.com/script/d05807e0a0814e4fb0e91401ac0367d5.experiment.js
Warning::
External script from b2b-static.oddschecker.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://b2b-static.oddschecker.com/oc-widgets/oc-connect-widget/index.js
Warning::
External script from strike.fox.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //strike.fox.com/static/sports/display/loader.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=Open+Sans:400,400i,600,600i,700,700i,800,800i&display=swap
Warning::
External script from prod.fennec.atp.fox lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://prod.fennec.atp.fox/js/fennec.js
Warning::
External script from statics.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://statics.foxsports.com/static/orion/js/segment-analytics.js
Warning::
External script from statics.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://statics.foxsports.com/static/orion/js/video-loader.js
Warning::
External script from cdn.ketchjs.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdn.ketchjs.com/ketchtag/stable/v2.12/ketch-sdk.js
Warning::
External script from static.chartbeat.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.chartbeat.com/js/chartbeat_video.js
Warning::
External script from static.chartbeat.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.chartbeat.com/js/chartbeat_mab.js
Warning::
External script from www.google.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.google.com/recaptcha/enterprise.js?render=6LcyRZYlAAAAADeVMY9pXIQ8Op1dJdJvN31mza63
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/PillsNav.BX8jfPfK.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/MarqueePromoEventChip.Bsb5J111.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/ReactionsAndCommentsCount.DAsBGx8_.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/TimeReactionsAndSource.BcfRQoFJ.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/StoryCardsItem.DeHFOWXC.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/RankTool.0tRolouv.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/Headlines.A1nAQUhr.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/VerticalVideoCarousel.CC1tfN_F.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/FairPlayComponent.CZvKNcwE.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/Youtube.DjYDDiUD.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/DeltaVideo.Du4EWwAA.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/VerticalHighlight.D_jwQc3x.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/SingleItem.B29J6H5O.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/DraftWidget.Du8yVVsq.css
Warning::
External link from www.foxsports.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.foxsports.com/_nuxt/NoDataAvailable.DH5HUrx3.css
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/foxcorp/fscom-main/prod/utag.51.js?utv=ut4.46.202209151408
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/foxcorp/fscom-main/prod/utag.140.js?utv=ut4.46.202209151408
Warning::
External script from strike.fox.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://strike.fox.com/static/sports/display/ver/app.v231.js
Warning::
External script from snippet.minute-ly.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://snippet.minute-ly.com/publishers/50100/mi-1.17.1.4401.js
Warning::
External script from tags.tiqcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //tags.tiqcdn.com/utag/tiqapp/utag.v.js?a=foxcorp/fscom-main/202501242212&cb=1776812333759
Warning::
External script from static.foxnews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.foxnews.com/static/strike/scripts/libs/jquery.js?v=v231
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/foxsports1/pmk-20220605.4.js
Warning::
External script from static.foxnews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.foxnews.com/static/orion/scripts/core/utils/geo.js?cb=1776812333875&v=v231
Warning::
External script from static.foxnews.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://static.foxnews.com/static/strike/scripts/libs/lodash.js?v=v231
Warning::
External script from apv-launcher.minute-ly.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://apv-launcher.minute-ly.com/api/launcher/MIN-50100.js
Warning::
External script from d2yyd1h5u9mauk.cloudfront.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://d2yyd1h5u9mauk.cloudfront.net/integrations/web/v1/library/u34zjQprHwNKwP26/delightedNps2.js
Warning::
External script from websdk.appsflyersdk.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://websdk.appsflyersdk.com?st=banners&
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
SRI Coverage 1 / 69 of external resources have integrity hashes
TagDomainIntegrity
<script>www.googletagmanager.com Missing
<script>www.google-analytics.com Missing
<script>sb.scorecardresearch.com Missing
<script>cdn.segment.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>cdn.segment.com Missing
<script>www.googletagmanager.com Missing
<script>vidstat.taboola.com Missing
<script>vidstat.taboola.com Missing
<script>www.knotch-cdn.com Missing
<script>www.gstatic.com Protected
<script>www.googletagmanager.com Missing
<script>pm-widget.taboola.com Missing
<script>gum.criteo.com Missing
<script>www.youtube.com Missing
<script>cdn.us.heap-api.com Missing
<script>tags.tiqcdn.com Missing
<script>cdn.segment.com Missing
<script>mssl.fwmrm.net Missing
<script>cdn.taboola.com Missing
<script>statics.foxsports.com Missing
<script>cdn.us.heap-api.com Missing
<script>global.ketchcdn.com Missing
<script>cdn.amplitude.com Missing
<script>b2b-static.oddschecker.com Missing
<script>strike.fox.com Missing
<link>fonts.googleapis.com Missing
<script>prod.fennec.atp.fox Missing
<script>statics.foxsports.com Missing
<script>statics.foxsports.com Missing
<script>cdn.ketchjs.com Missing
<script>static.chartbeat.com Missing
<script>static.chartbeat.com Missing
<script>www.google.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<link>www.foxsports.com Missing
<script>tags.tiqcdn.com Missing
<script>tags.tiqcdn.com Missing
<script>strike.fox.com Missing
<script>snippet.minute-ly.com Missing
<script>tags.tiqcdn.com Missing
<script>static.foxnews.com Missing
<script>pm-widget.taboola.com Missing
<script>static.foxnews.com Missing
<script>static.foxnews.com Missing
<script>apv-launcher.minute-ly.com Missing
<script>d2yyd1h5u9mauk.cloudfront.net Missing
<script>websdk.appsflyersdk.com Missing
<script>www.youtube.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
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
C
Known vulnerability matches
Action
6 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
jQuery1.11.2medium3rd party CORS request may execute1.12.0
jQuery1.11.2mediumparseHTML() executes scripts in event handlers2.2.0
jQuery1.11.2lowjQuery 1.x and 2.x are End-of-Life and no longer receiving security updates2.999.999
jQuery1.11.2mediumjQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution3.4.0
jQuery1.11.2mediumpassing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code.3.5.0
jQuery1.11.2mediumRegex in its jQuery.htmlPrefilter sometimes may introduce XSS3.5.0
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::
HSTS max-age is short: 0 days
HSTS max-age should be at least 1 year (31536000 seconds).
Got: max-age=600 (expected 31536000)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
Info::
HSTS preload enabled
A+
TLS & Certificates
TLS 1.2, 7 checks passed
PASS
TLS 1.2, 7 checks passed
Info::
TLS 1.2 is used
Got: TLS 1.2
Info::
TLS 1.3 is not negotiated
TLS 1.3 offers improved performance and security. Consider enabling it.
Got: TLS 1.2
Info::
Strong cipher suite is used
Got: TLS_ECDHE_RSA_WITH_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 122 days)
Got: 2026-08-21T23:59:59Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 19 domain(s)
Got: san.foxsports.com, *.dev.foxsports.com, *.dev.fssta.com, *.dev.wp.foxsports.com, *.foxsports.com, *.fssta.com, *.stg.fssta.com, *.stg.wp.foxsports.com, *.stg1.fssta.com, *.stg2.fssta.com, *.theusfl.com, *.usfl2.com, *.util.foxsports.com, *.westminsterkennelclub.org, foxsports.com, stage.activate.foxsports.com, test.api.foxsports.com, theusfl.com, usfl2.com
Info::
Certificate is issued by a trusted CA
Got: CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US

TLS 1.3 offers improved performance and security. Consider enabling it.

Why this matters

TLS 1.3 not in use — connection falls back to 1.2 and pays the extra round-trip.

Learn more

Most clients prefer TLS 1.3 if both sides support it. If your server has TLS 1.3 enabled but it's not being negotiated, check for a downgrade-attack mitigation issue or a misconfigured cipher list. nginx ≥ 1.13.0 and OpenSSL ≥ 1.1.1 support TLS 1.3.

Source: RFC 8446 / Mozilla SSL Config

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.2
Cipher Suite
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=san.foxsports.com,O=Fox Media LLC,L=Los Angeles,ST=California,C=USIssuer CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=USValid 2025-08-19T00:00:00Z → 2026-08-21T23:59:59ZExpires in 122 days SANs san.foxsports.com, *.dev.foxsports.com, *.dev.fssta.com, *.dev.wp.foxsports.com, *.foxsports.com, *.fssta.com, *.stg.fssta.com, *.stg.wp.foxsports.com, *.stg1.fssta.com, *.stg2.fssta.com, *.theusfl.com, *.usfl2.com, *.util.foxsports.com, *.westminsterkennelclub.org, foxsports.com, stage.activate.foxsports.com, test.api.foxsports.com, theusfl.com, usfl2.comSignature SHA256-RSASerial b641a0728effb2cc8bef2a524ebf5e6
Intermediate (CA Certificate)
Subject CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=USIssuer CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=USValid 2021-03-30T00:00:00Z → 2031-03-29T23:59:59ZExpires in 1803 days Signature SHA256-RSASerial cf5bd062b5602f47ab8502c23ccf066
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; sp=none; fo=1; rua=mailto:dmarc_rua@emaildefense.proofpoint.com; ruf=mailto:dmarc_ruf@emaildefense.proofpoint.com
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback