Skip to content
https://ea.com

Security

· 12 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
69
GRADE
D
FIX
5
REVIEW
2
PASS
5
INFO
0
Checks
12
5 PASS 2 REVIEW 5 FIX
D
Security Headers
Action
4 of 10 headers properly configured
FIX
4 of 10 headers properly configured
Warning::
HSTS max-age is too short (15768000s, 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=15768000 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
Info::
X-Frame-Options is properly configured
Got: SAMEORIGIN
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: frame-ancestors '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

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

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

D
Cookie Security
Action
4 cookies analyzed, 1 checks passed
FIX
4 cookies analyzed, 1 checks passed
Critical::
Cookie 'EDGESCAPE_COUNTRY' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'EDGESCAPE_COUNTRY' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'EDGESCAPE_COUNTRY' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'EDGESCAPE_REGION' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'EDGESCAPE_REGION' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'EDGESCAPE_REGION' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'EDGESCAPE_TIMEZONE' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'EDGESCAPE_TIMEZONE' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'EDGESCAPE_TIMEZONE' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Info::
Cookie 'ealocale' has the Secure flag
Warning::
Cookie 'ealocale' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'ealocale' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
4 cookies analyzed 3 critical 8 warnings
NameSecureHttpOnlySameSiteSizeIssues
EDGESCAPE_COUNTRY19 B3
EDGESCAPE_REGION18 B3
EDGESCAPE_TIMEZONE23 B3
ealocale13 B2
D
Subresource Integrity
Action
2 of 77 external resources have SRI
FIX
2 of 77 external resources have SRI
Warning::
External script from bam-cell.nr-data.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://bam-cell.nr-data.net/1/f701a6c63c?a=149134891&sa=1&v=1209.f04e2b9&t=Unnamed%20Transaction&rst=1425&ck=1&ref=https://www.ea.com/&be=114&fe=1385&dc=289&af=err,xhr,stn,ins,spa&perf=%7B%22timing%22:%7B%22of%22:1776360264136,%22n%22:0,%22f%22:36,%22dn%22:37,%22dne%22:71,%22c%22:71,%22s%22:72,%22ce%22:75,%22rq%22:75,%22rp%22:85,%22rpe%22:87,%22dl%22:91,%22di%22:275,%22ds%22:289,%22de%22:291,%22dc%22:1384,%22l%22:1384,%22le%22:1386%7D,%22navigation%22:%7B%7D%7D&fp=456&fcp=864&jsonp=NREUM.setToken
Warning::
External script from js-agent.newrelic.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js-agent.newrelic.com/nr-spa-1209.min.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-NC64XZB&gtm=4e64f0h1&bs=ctrl
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-TG32RCX
Info::
script from unpkg.com has SRI protection
Info::
script from cdnjs.cloudflare.com has SRI protection
Warning::
External script from w.soundcloud.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //w.soundcloud.com/player/api.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-elements.min.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-elements.min.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-age-gate-ea-age-gate-js~ea-algs-challenger-circuit-leaderboard-ea-algs-challenger-circuit-leaderb.d48cc301.32c9422d7f604979e800.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-age-gate-ea-age-gate-js~ea-algs-challenger-circuit-leaderboard-ea-algs-challenger-circuit-leaderb.c02d90b6.493637998683c83b3735.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-elements-loader-ea-elements-loader-js.75d60a4f.ffca2a0a8ee81cb2acbc.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-algs-challenger-circuit-leaderboard-ea-algs-challenger-circuit-leaderboard-js~ea-algs-leaderboard.0f3edbed.ffba6c330b0f66f24a42.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-network-nav-ea-network-nav-js.b365f041.1763220178f4e48c8d3b.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-player-ea-player-js.b365f041.0e79859464d9428489d0.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-type-kit-ea-type-kit-js.c2981ef3.56fde94dc89a8b8fd9b1.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-algs-challenger-circuit-leaderboard-ea-algs-challenger-circuit-leaderboard-js~ea-algs-leaderboard.88e1d92a.43b15117b9c6f726c2c4.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-algs-challenger-circuit-leaderboard-ea-algs-challenger-circuit-leaderboard-js~ea-algs-leaderboard.6a8fe7ff.690ec58c3d162f4b89ea.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-icons-ea-icons-js.727857f6.a91b634c7f6f63035f40.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/hybrid-ea-hybrid-icons-ea-hybrid-icons-js.2dabccf0.39c0dca421eac1d0c88a.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/hybrid-ea-hybrid-mixins-ea-hybrid-modal-base-js.77f180b9.1d31ea6d457e6fea32cd.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-cta-ea-cta-js.b365f041.72e5851b1c8c791b343e.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-advanced-ea-local-nav-advanced-js~ea-local-nav-drawer-sub-nav-advanced-ea-local-nav-dra.5c0c4774.35d01f64816679b6295b.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-game-box-ea-game-box-js.b365f041.83bdf4712f564ddfc024.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-advanced-ea-local-nav-advanced-js~ea-local-nav-shelf-sub-nav-ea-local-nav-shelf-sub-nav.f5796305.f2b1a67f2a681e63f5dc.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-advanced-ea-local-nav-advanced-js.d6a5c661.644af8b06a5db6447c46.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-link-ea-link-js.b365f041.29874026339c6d7f1205.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-shelf-sub-nav-ea-local-nav-shelf-sub-nav-js.b365f041.fb22b42569fc712f9ae3.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-shelf-sub-nav-section-ea-local-nav-shelf-sub-nav-section-js.b365f041.39daf7cb9269181c13bf.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-shelf-sub-nav-section-link-ea-local-nav-shelf-sub-nav-section-link-js.b365f041.7c845e9c9bc0eb594249.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-drawer-sub-nav-advanced-ea-local-nav-drawer-sub-nav-advanced-js.c2981ef3.0c24b2122353e7ea6a0d.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-nav-drawer-sub-nav-section-ea-local-nav-drawer-sub-nav-section-js.b365f041.7e82faaea96b6b8824b5.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-spacer-ea-spacer-js.c2981ef3.fd3c6fc6ff0bcbfff1ce.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/eacom-icons-eacom-icons-js.f3846b68.afb8228d5d32c5243d0a.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-section-column-ea-section-column-js.b365f041.63bd1d658549940fa401.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-section-ea-section-js.31ecd969.572a79f9888d2130df95.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-hero-ea-hero-js.b365f041.8d7d73fbef172ea73295.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-product-conversion-ea-product-conversion-js.68dfa914.298176ffef7199c95fff.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-subheading-ea-subheading-js.c2981ef3.240e3169da1a64a82346.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-behaviors-ea-catalog-js~ea-box-set-ea-box-set-js~ea-filter-ea-filter-js~ea-grid-ea-grid-js~ea-pla.18086780.61ba300658c452bbd782.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-behaviors-ea-catalog-js~ea-box-set-ea-box-set-js~ea-grid-ea-grid-js~ea-proclub-match-history-ea-p.07007478.6b10ca967a217c4f4ced.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-box-set-ea-box-set-js.31ecd969.05e8809e656aa137a2ef.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-pagination-ea-pagination-js.c2981ef3.2997c9b8d33774012fdd.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-grid-ea-grid-js.31ecd969.5e35b4ea50e732f96ede.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-tile-ea-tile-js.b365f041.656d716248ba34be35e7.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-media-ea-media-js.be26e2e0.a0d3bf683ba18043c9b5.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-image-ea-image-js.31ecd969.cbc85ecd22190fde7d0b.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-text-ea-text-js.68dfa914.984e3f3b7f951523053c.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-page-background-ea-page-background-js.b365f041.5bcc31ee7fd7767e64bf.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-footer-ea-local-footer-js~ea-play-comparison-ea-play-comparison-js~hybrid-ea-hybrid-buy-wid.3eef87b3.7f98f11cb4ce8530db98.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-footer-ea-local-footer-js.31ecd969.87722057b46df987b1ec.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-links-ea-local-links-js.c2981ef3.93fd9dbdca945d87be2a.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-local-link-ea-local-link-js.b365f041.5bff5c5f95974b220fe6.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-social-links-ea-social-links-js.c2981ef3.33df6a072a4a874a4f38.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-social-link-ea-social-link-js.b365f041.1c82b4083c070e37a4f9.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/hybrid-ea-hybrid-price-query-ea-hybrid-price-query-js~hybrid-ea-hybrid-regional-rating-ea-hybrid-reg.ea009f63.60a75078cbbd2f7430ec.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/hybrid-ea-hybrid-regional-rating-ea-hybrid-regional-rating-js.f71cff67.2c2d290066d51b73f86b.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-network-footer-ea-network-footer-js.c2981ef3.da37a8fc07d01d009304.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-network-legal-ea-network-legal-js.b365f041.bf28a7d4d57e4ff52967.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-content-loader-ea-content-loader-js.68dfa914.5f563ba710b9176131d8.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-play-comparison-ea-play-comparison-js~ea-regional-pricing-selector-ea-regional-pricing-selector-j.cfbec783.8cb236c940d4eec4334b.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-regional-pricing-selector-ea-regional-pricing-selector-js.31ecd969.20408b46d960bdad5562.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-locale-selector-ea-locale-selector-js.31ecd969.360f4d8cc07093b0884f.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-player-ratings-detail-view-mcs-ea-player-ratings-detail-view-mcs-js~ea-truste-ea-truste-js~ea-you.191d8768.22b530a8cd5a5cafd5d9.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-truste-ea-truste-js.b365f041.2655151cc69b2061130c.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-modal-ea-modal-js~ea-modal-advance-ea-modal-advance-js~ea-player-ratings-detail-view-mcs-ea-playe.d51330b6.a6b4236809673a4046f1.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-modal-ea-modal-js.b365f041.a7074b5985a71ec901e9.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-age-gate-ea-age-gate-js.be26e2e0.5ac934b5cd669db01b01.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-date-field-ea-date-field-js~ea-input-ea-input-js~ea-text-area-ea-text-area-js~eacom-sms-opt-in-ea.cebcaad8.04a6774d6e5fa6e3577a.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-date-field-ea-date-field-js~eacom-sms-opt-in-eacom-sms-opt-in-js.b365f041.72a48e5afbb77f33b5a8.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-date-field-ea-date-field-js.31ecd969.02c2b9c38b4a9572e84a.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-submit-ea-submit-js.b365f041.bce3c8760de5589c10e1.chunk.js
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/ea-player-avatar-ea-player-avatar-js.b365f041.f7fabd98a9ce70d7cabb.chunk.js
Warning::
External script from consent.trustarc.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://consent.trustarc.com/asset/notice.js/v/v1.7-1729
Warning::
External script from consent.trustarc.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //consent.trustarc.com/notice?domain=ea.com&c=teconsent&js=nj&noticeType=bb&text=true&gtm=1&pn=1
Warning::
External script from pl.ea.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //pl.ea.com/release/4.69.4/elements/browser-support.min.js
Warning::
External script from use.typekit.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //use.typekit.net/txn1klh.js
SRI Coverage 2 / 77 of external resources have integrity hashes
TagDomainIntegrity
<script>bam-cell.nr-data.net Missing
<script>js-agent.newrelic.com Missing
<script>www.googletagmanager.com Missing
<script>www.googletagmanager.com Missing
<script>unpkg.com Protected
<script>cdnjs.cloudflare.com Protected
<script>w.soundcloud.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>pl.ea.com Missing
<script>consent.trustarc.com Missing
<script>consent.trustarc.com Missing
<script>pl.ea.com Missing
<script>use.typekit.net 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

B
Content Security Policy
2 of 10 CSP checks passed
REVIEW
2 of 10 CSP checks passed
Info::
Raw CSP policy
Got: frame-ancestors 'self'
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'
Info::
frame-ancestors directive is set
Got: 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

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

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

frame-ancestors 'self'
B
CORS Configuration
No CORS headers
REVIEW
No CORS headers
Info::
No CORS headers present — secure default
CORS Configuration Secure

No CORS headers detected.

Cross-origin requests are blocked by browser same-origin policy.

Origin reflection test

Some servers mirror the request Origin header, which can be exploited. Test manually:

curl -sI -H "Origin: https://evil.com" <url> | grep -i access-control
A+
TLS & Certificates
TLS 1.3, 7 checks passed
PASS
TLS 1.3, 7 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_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 253 days)
Got: 2026-12-25T23:59:59Z
Info::
Certificate chain has 3 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 100 domain(s)
Got: starwarssquadrongame.com, starwarssquadronsgame.us, starwarssquadronsgame.uk, starwarssquadronsgame.space, starwarssquadronsgame.org, starwarssquadronsgame.net, starwarssquadronsgame.jp, starwarssquadronsgame.info, starwarssquadronsgame.fr, starwarssquadronsgame.es, starwarssquadronsgame.email, starwarssquadronsgame.de, starwarssquadronsgame.com.es, starwarssquadronsgame.com.br, starwarssquadronsgame.com, starwarssquadronsgame.co.uk, starwarssquadronsgame.co, starwarssquadronsgame.cm, starwarssquadronsgame.club, starwarssquadronsgame.biz, starwarssquadronsgame.app, starwarssquadrons.games, starwarsquadronsgame.com, starwarsquadrongame.com, starwars-squadronsgame.com, starwars-squadrons-game.com, star-wars-squadrons-game.com, *.starwarssquadronsgame.us, *.starwarssquadronsgame.uk, *.starwarssquadronsgame.space, *.starwarssquadronsgame.org, *.starwarssquadronsgame.net, *.starwarssquadronsgame.jp, *.starwarssquadronsgame.info, *.starwarssquadronsgame.fr, *.starwarssquadronsgame.es, *.starwarssquadronsgame.email, *.starwarssquadronsgame.de, *.starwarssquadronsgame.com.es, *.starwarssquadronsgame.com.br, *.starwarssquadronsgame.com, *.starwarssquadronsgame.co.uk, *.starwarssquadronsgame.co, *.starwarssquadronsgame.cm, *.starwarssquadronsgame.club, *.starwarssquadronsgame.biz, *.starwarssquadronsgame.app, *.starwarssquadrons.games, *.starwarssquadrongame.com, *.starwarsquadronsgame.com, *.starwarsquadrongame.com, *.starwars-squadronsgame.com, *.starwars-squadrons-game.com, *.star-wars-squadrons-game.com, *.simcitybuildit.com, *.itoys.ea.com, *.genesis.ea.com, *.ad.ea.com, eafullcircle.com, www.eafullcircle.com, qa.sst.digitalcodes.ea.com, sst.digitalcodes.ea.com, *.livecontent.pogo.com, *.integration.pogo.com, *.staging.pogo.com, *.orbit.ea.com, supermegabaseball.com, *.slightlymadstudios.com, *.respawn.com, www.dev.gamekit.ea.com, *.glaas.ea.com, *.staging.ea.com, *.myaccount.staging.ea.com, *.preprod.ea.com, *.integration.ea.com, *.glaasts.ea.com, dragonagekeep.com, www.dragonagekeep.com, docs.ea.com, ea.com, *.ea.com, *.linux.ea.com, *.np.gs.ea.com, proxy.novafusion.ea.com, proxy.novafusion.integration.ea.com, *.eainnovation.net, www.designhome.com, designhome.com, *.gamekit.ea.com, covetfashion.com, www.covetfashion.com, *.dcl.ea.com, www.supermegabaseball.com, www.forums.ea.com, *.unreal-ddc.ea.com, *.loyalty.ea.com, tracab.com, www.tracab.com, madden-academy.com, www.madden-academy.com
Info::
Certificate is issued by a trusted CA
Got: CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,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=starwarssquadrongame.com,O=Electronic Arts Inc.,L=Redwood City,ST=California,C=USIssuer CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=USValid 2025-11-24T00:00:00Z → 2026-12-25T23:59:59ZExpires in 253 days SANs starwarssquadrongame.com, starwarssquadronsgame.us, starwarssquadronsgame.uk, starwarssquadronsgame.space, starwarssquadronsgame.org, starwarssquadronsgame.net, starwarssquadronsgame.jp, starwarssquadronsgame.info, starwarssquadronsgame.fr, starwarssquadronsgame.es, starwarssquadronsgame.email, starwarssquadronsgame.de, starwarssquadronsgame.com.es, starwarssquadronsgame.com.br, starwarssquadronsgame.com, starwarssquadronsgame.co.uk, starwarssquadronsgame.co, starwarssquadronsgame.cm, starwarssquadronsgame.club, starwarssquadronsgame.biz, starwarssquadronsgame.app, starwarssquadrons.games, starwarsquadronsgame.com, starwarsquadrongame.com, starwars-squadronsgame.com, starwars-squadrons-game.com, star-wars-squadrons-game.com, *.starwarssquadronsgame.us, *.starwarssquadronsgame.uk, *.starwarssquadronsgame.space, *.starwarssquadronsgame.org, *.starwarssquadronsgame.net, *.starwarssquadronsgame.jp, *.starwarssquadronsgame.info, *.starwarssquadronsgame.fr, *.starwarssquadronsgame.es, *.starwarssquadronsgame.email, *.starwarssquadronsgame.de, *.starwarssquadronsgame.com.es, *.starwarssquadronsgame.com.br, *.starwarssquadronsgame.com, *.starwarssquadronsgame.co.uk, *.starwarssquadronsgame.co, *.starwarssquadronsgame.cm, *.starwarssquadronsgame.club, *.starwarssquadronsgame.biz, *.starwarssquadronsgame.app, *.starwarssquadrons.games, *.starwarssquadrongame.com, *.starwarsquadronsgame.com, *.starwarsquadrongame.com, *.starwars-squadronsgame.com, *.starwars-squadrons-game.com, *.star-wars-squadrons-game.com, *.simcitybuildit.com, *.itoys.ea.com, *.genesis.ea.com, *.ad.ea.com, eafullcircle.com, www.eafullcircle.com, qa.sst.digitalcodes.ea.com, sst.digitalcodes.ea.com, *.livecontent.pogo.com, *.integration.pogo.com, *.staging.pogo.com, *.orbit.ea.com, supermegabaseball.com, *.slightlymadstudios.com, *.respawn.com, www.dev.gamekit.ea.com, *.glaas.ea.com, *.staging.ea.com, *.myaccount.staging.ea.com, *.preprod.ea.com, *.integration.ea.com, *.glaasts.ea.com, dragonagekeep.com, www.dragonagekeep.com, docs.ea.com, ea.com, *.ea.com, *.linux.ea.com, *.np.gs.ea.com, proxy.novafusion.ea.com, proxy.novafusion.integration.ea.com, *.eainnovation.net, www.designhome.com, designhome.com, *.gamekit.ea.com, covetfashion.com, www.covetfashion.com, *.dcl.ea.com, www.supermegabaseball.com, www.forums.ea.com, *.unreal-ddc.ea.com, *.loyalty.ea.com, tracab.com, www.tracab.com, madden-academy.com, www.madden-academy.comSignature SHA256-RSASerial 79d3fa1d1046f14d5829ce7fb648c4d
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 1808 days Signature SHA256-RSASerial cf5bd062b5602f47ab8502c23ccf066
Intermediate (CA Certificate)
Subject CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=USIssuer CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=USValid 2013-08-01T12:00:00Z → 2038-01-15T12:00:00ZExpires in 4291 days Signature SHA256-RSASerial 33af1e6a711a9a0bb2864b11d09fae5
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: quarantine
PASS
DMARC: quarantine
Info::
DMARC policy is quarantine — good protection
DMARC
Policy quarantine — good protection Record v=DMARC1; p=quarantine; pct=100; rua=mailto:dmarc_agg@vali.email,mailto:it-messaging-dmarc-alerts@ea.com; ruf=mailto:it-messaging-dmarc-alerts@ea.com; fo=1
A
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) supported
The server advertises HTTP/3 via Alt-Svc for faster connections on mobile networks.
Warning::
HSTS max-age is short: 182 days
HSTS max-age should be at least 1 year (31536000 seconds).
Got: max-age=15768000 (expected 31536000)
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