Skip to content
https://www.roblox.com

Security

· 33 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
80
GRADE
B
FIX
6
REVIEW
7
PASS
20
INFO
0
Checks
33
20 PASS 7 REVIEW 6 FIX
D
Content Security Policy
Action
4 of 10 CSP checks passed
FIX
4 of 10 CSP checks passed
Info::
Raw CSP policy
Got: report-uri https://metrics.roblox.com/v1/csp/report?type=enforce; upgrade-insecure-requests; script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval' apis.roblox.com roblox.com apis.robloxapp.vnggames.com arkoselabs.robloxapp.vnggames.com *.evidon.com *.gigya.com *.google-analytics.com *.ns1p.net adservice.google.com challenges.cloudflare.com cdn.arkoselabs.com connect.facebook.net funcaptcha.com js.rbxcdn.com js.stripe.com long.open.weixin.qq.com midas.gtimg.cn radar.cedexis.com res.wx.qq.com roblox-api.arkoselabs.com arkoselabs.roblox.com roblox-load-generator-configuration.s3.us-east-2.amazonaws.com s.ytimg.com sb.scorecardresearch.com static.rbxcdn.com www.google.com www.gstatic.com www.youtube.com h.online-metrix.net request.eprotect.vantivcnp.com request.eprotect.vantivpostlive.com *.googletagmanager.com *.googleadservices.com googleads.g.doubleclick.net cdn.veriff.me *.lightstep.com client-api.arkoselabs.com api.arkoselabs.com *.sierra.chat sierra.chat sc-static.net *.sc-static.net *.snapchat.com *.tapad.com analytics.tiktok.com cdn.safecharge.com *.px-cloud.net *.px-cdn.net; img-src 'self' data: *.cloudfront.net *.gilcdn.com *.gldcdn.com *.google-analytics.com *.google.com *.kaptcha.com *.openstreetmap.org *.rblx.org *.rbxcdn.com *.roblox.com *.robloxlabs.com googleads.g.doubleclick.net i.ytimg.com www.googletagmanager.com robloxcorp.s.llnwi.net roblox-poc.global.ssl.fastly.net d1unuk07s6td74.cloudfront.net *.sierra.chat sierra.chat *.stripe.com *.tarobicdn.com *.tarobidevsandboxcdn.com www.facebook.com *.snapchat.com *.safecharge.com; connect-src 'self' *.roblox.com *.robloxlabs.com *.rblx.org *.rbx.com *.rbxcdn.com *.roblox.cn *.robloxapp.vnggames.com *.simulpong.com *.lightstep.com *.ns1p.net *.arkoselabs.com *.kaptcha.com *.google.com *.google-analytics.com *.doubleclick.net *.sentry.io wss://realtime.roblox.com wss://realtime.sitetest1.robloxlabs.com wss://realtime.sitetest2.robloxlabs.com wss://realtime.sitetest3.robloxlabs.com wss://realtime-signalr.roblox.com wss://realtime-signalr.robloxapp.vnggames.com *.braintree-api.com *.braintreegateway.com d1q2u37vreaobr.cloudfront.net funcaptcha.com robloxcorp.s.llnwi.net roblox-poc.global.ssl.fastly.net d1unuk07s6td74.cloudfront.net *.sierra.chat sierra.chat sc-static.net *.sc-static.net *.snapchat.com *.tapad.com analytics.tiktok.com *.safecharge.com *.px-cloud.net *.px-cdn.net *.pxchk.net *.px-client.net *.perimeterx.net;
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'
Critical::
'unsafe-inline' found in script source
'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.
Got: script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval' apis.roblox.com roblox.com apis.robloxapp.vnggames.com arkoselabs.robloxapp.vnggames.com *.evidon.com *.gigya.com *.google-analytics.com *.ns1p.net adservice.google.com challenges.cloudflare.com cdn.arkoselabs.com connect.facebook.net funcaptcha.com js.rbxcdn.com js.stripe.com long.open.weixin.qq.com midas.gtimg.cn radar.cedexis.com res.wx.qq.com roblox-api.arkoselabs.com arkoselabs.roblox.com roblox-load-generator-configuration.s3.us-east-2.amazonaws.com s.ytimg.com sb.scorecardresearch.com static.rbxcdn.com www.google.com www.gstatic.com www.youtube.com h.online-metrix.net request.eprotect.vantivcnp.com request.eprotect.vantivpostlive.com *.googletagmanager.com *.googleadservices.com googleads.g.doubleclick.net cdn.veriff.me *.lightstep.com client-api.arkoselabs.com api.arkoselabs.com *.sierra.chat sierra.chat sc-static.net *.sc-static.net *.snapchat.com *.tapad.com analytics.tiktok.com cdn.safecharge.com *.px-cloud.net *.px-cdn.net
Info::
No 'unsafe-eval' in script source
Info::
No wildcard in script source
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

'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.

Why this matters

Unsafe value (unsafe-inline, unsafe-eval) in script-src defeats CSP's main protection — XSS injections can execute again.

Learn more

unsafe-inline allows inline <script> tags; unsafe-eval allows eval() and similar. Both are necessary for some legacy code but explicitly dangerous. Migrate to nonces (per-page random tokens) or hashes (per-script SHA-256) instead.

Source: OWASP CSP / MDN

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

report-uri https://metrics.roblox.com/v1/csp/report?type=enforce
upgrade-insecure-requests
script-src 'self''unsafe-inline''wasm-unsafe-eval'apis.roblox.comroblox.comapis.robloxapp.vnggames.comarkoselabs.robloxapp.vnggames.com*.evidon.com*.gigya.com*.google-analytics.com*.ns1p.netadservice.google.comchallenges.cloudflare.comcdn.arkoselabs.comconnect.facebook.netfuncaptcha.comjs.rbxcdn.comjs.stripe.comlong.open.weixin.qq.commidas.gtimg.cnradar.cedexis.comres.wx.qq.comroblox-api.arkoselabs.comarkoselabs.roblox.comroblox-load-generator-configuration.s3.us-east-2.amazonaws.coms.ytimg.comsb.scorecardresearch.comstatic.rbxcdn.comwww.google.comwww.gstatic.comwww.youtube.comh.online-metrix.netrequest.eprotect.vantivcnp.comrequest.eprotect.vantivpostlive.com*.googletagmanager.com*.googleadservices.comgoogleads.g.doubleclick.netcdn.veriff.me*.lightstep.comclient-api.arkoselabs.comapi.arkoselabs.com*.sierra.chatsierra.chatsc-static.net*.sc-static.net*.snapchat.com*.tapad.comanalytics.tiktok.comcdn.safecharge.com*.px-cloud.net*.px-cdn.net
img-src 'self'data:*.cloudfront.net*.gilcdn.com*.gldcdn.com*.google-analytics.com*.google.com*.kaptcha.com*.openstreetmap.org*.rblx.org*.rbxcdn.com*.roblox.com*.robloxlabs.comgoogleads.g.doubleclick.neti.ytimg.comwww.googletagmanager.comrobloxcorp.s.llnwi.netroblox-poc.global.ssl.fastly.netd1unuk07s6td74.cloudfront.net*.sierra.chatsierra.chat*.stripe.com*.tarobicdn.com*.tarobidevsandboxcdn.comwww.facebook.com*.snapchat.com*.safecharge.com
connect-src 'self'*.roblox.com*.robloxlabs.com*.rblx.org*.rbx.com*.rbxcdn.com*.roblox.cn*.robloxapp.vnggames.com*.simulpong.com*.lightstep.com*.ns1p.net*.arkoselabs.com*.kaptcha.com*.google.com*.google-analytics.com*.doubleclick.net*.sentry.iowss://realtime.roblox.comwss://realtime.sitetest1.robloxlabs.comwss://realtime.sitetest2.robloxlabs.comwss://realtime.sitetest3.robloxlabs.comwss://realtime-signalr.roblox.comwss://realtime-signalr.robloxapp.vnggames.com*.braintree-api.com*.braintreegateway.comd1q2u37vreaobr.cloudfront.netfuncaptcha.comrobloxcorp.s.llnwi.netroblox-poc.global.ssl.fastly.netd1unuk07s6td74.cloudfront.net*.sierra.chatsierra.chatsc-static.net*.sc-static.net*.snapchat.com*.tapad.comanalytics.tiktok.com*.safecharge.com*.px-cloud.net*.px-cdn.net*.pxchk.net*.px-client.net*.perimeterx.net
D
Cookie Security
Action
4 cookies analyzed, 3 checks passed
FIX
4 cookies analyzed, 3 checks passed
Critical::
Cookie 'rbx-ip2' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'rbx-ip2' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'rbx-ip2' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'RBXEventTrackerV2' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'RBXEventTrackerV2' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'RBXEventTrackerV2' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Critical::
Cookie 'GuestData' is missing the Secure flag
Without the Secure flag, this cookie can be sent over unencrypted HTTP, exposing it to interception.
Warning::
Cookie 'GuestData' is missing the HttpOnly flag
Without HttpOnly, this cookie can be accessed by JavaScript, making it vulnerable to XSS-based theft.
Warning::
Cookie 'GuestData' has no SameSite attribute
Without an explicit SameSite attribute, browser default behavior varies. Set SameSite=Lax or Strict.
Info::
Cookie '__cf_bm' has the Secure flag
Info::
Cookie '__cf_bm' has the HttpOnly flag
Info::
Cookie '__cf_bm' has SameSite=None
4 cookies analyzed 3 critical 6 warnings
NameSecureHttpOnlySameSiteSizeIssues
rbx-ip28 B3
RBXEventTrackerV289 B3
GuestData26 B3
__cf_bmNone206 B
F
Subresource Integrity Adoption
Action
0% SRI adoption (1/141 third-party resources)
FIX
0% SRI adoption (1/141 third-party resources)
Warning::
SRI adoption: 1/141 third-party resources protected (0%)
Of 141 third-party `<script>` / `<link rel=stylesheet>` resources, 1 (0%) declare a Subresource Integrity hash via the `integrity=` attribute. SRI binds the page to the exact bytes of the third-party resource: if the CDN is compromised, attacker-modified bytes won't match the declared hash and the browser refuses to execute the resource. Missing SRI on (first 5 examples): - https://css.rbxcdn.com/c322b91ca81a7865f4c49ac675d1ab14df2cdec6479bc4a7fe8af14dc5291044-FoundationCss.css - https://css.rbxcdn.com/cbc004c933c81fb07d6c57dd882001686ae4f26f1f13134ea1b138d7866af876-ReactStyleGuide.css - https://css.rbxcdn.com/d2eaca6faaaa8d6fa2d157344f4ab73259728ecda54ed1cc6f2d7362a77b5983-StyleGuide.css - https://css.rbxcdn.com/ef552f4ac70dd3209c70b94a377f66e3828905b9672bb67c661122403a6d15b7-Builder.css - https://css.rbxcdn.com/04f1210583fa8e85a56204ea2442012e57addf09809ab10e9934fa490d56ee49-Thumbnails.css Fix: add `integrity="sha384-..."` and `crossorigin="anonymous"` attributes. Generators: srihash.org, or in-browser via `await crypto.subtle.digest('SHA-384', bytes)`. Cache-bust the resource URL when you change versions, since the integrity hash will mismatch with old cached bytes.
Got: 0% (1/141)
D
Subresource Integrity
Action
1 of 141 external resources have SRI
FIX
1 of 141 external resources have SRI
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/c322b91ca81a7865f4c49ac675d1ab14df2cdec6479bc4a7fe8af14dc5291044-FoundationCss.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/cbc004c933c81fb07d6c57dd882001686ae4f26f1f13134ea1b138d7866af876-ReactStyleGuide.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/d2eaca6faaaa8d6fa2d157344f4ab73259728ecda54ed1cc6f2d7362a77b5983-StyleGuide.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/ef552f4ac70dd3209c70b94a377f66e3828905b9672bb67c661122403a6d15b7-Builder.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/04f1210583fa8e85a56204ea2442012e57addf09809ab10e9934fa490d56ee49-Thumbnails.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/b8f8f15a57a66e73469ae72eea7d8905346afa78b9f2397627cd099f7dcc779a-CaptchaCore.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/425750fcea32cbd87363ee2d46539a13eee157b6c0b565dbe4389b416614f269-EmailVerifyCodeModal.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/8e1cfd7bd32c2e18abd4d13279ce270d1f0f6a2c6bf05d29dbab0729ba0b5ef8-Challenge.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/f77e16b9fa5823882aaa0cdabade9706b9ba2b7e050d23d2831da138a58e5f7f-VerificationUpsell.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/b2cff71de0c286e8f85b1a26a8b87a8cd7f77422c592849ad5114ac5d929c575.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/0704f0124b6c271ad6dfc296f9805b5f240b99a58479b04052d6c929f4647942-AccountSwitcher.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/9bfc48ea40a698035ea8cbe3d3e94bd06d3aac48969bedceb6d8ba5ff17ff84d.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/976db25e4f0b7724368f433d63e492c4148dca06056e997c1cbe4b4f021600a4-SearchLandingPage.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/7dfc7837b5da6850e13413c630b37da7e88aeb610ca2c7d4e8b71b02cbdc6ba6.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/7e2fa6345e2c2b5f931bfda68f4574582a28a281905b6c18e028fa4f5d10d7b7-Navigation.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/0f638d9cad3d450dec6771c2db09c9e8954b25b6ef84423d94f291b6c480471f-CookieBannerV3.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/d0015d0fd7893c94a935e228b4ca3f79eece7593ab080cc2cdfdbc5d278b44b4-Footer.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/2152a305a6a0a3d5a56e402aa4e3e9db865ff7bfa813e7b7ad780bf9876b5cc4-AccessManagementUpsellV2.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/b298a7664e0742b640ae693ab40dd74a883ca2ef90b3dac6c6489bbafb052ab1-ReactLanding.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/bc960ab1460ffb77f7d3e4cfd68381d1ee9ed8e96a02991524ee01d72532d365-Captcha.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/52f3e763c2d49763b2dac14293b034680b0d32284d3f46e4b0a51073ae47995b-ItemPurchaseUpsell.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/3408b46f5db5261266fe187e582c87e980ac50a5047314613bc4a7486de21e8c-ItemPurchase.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/37b5bc69ed67ee094c95e908d68d809c55c28ab8f34ed714a7541f1f5eeacfa6-IdVerification.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/d45e200658a1343116bbf4a88c367d093758085e7d001918d641c85b2143468f-AccessManagementUpsell.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/4806bac3d36a384ebcf7cd0da6c34786b66ca961cc084daee7995125cc08b7f1-GameLaunch.css
Warning::
External link from css.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://css.rbxcdn.com/d5a3728b78be729b693aadf79a1f45f0fa49c15fe863a0d7dd631b75f9e82207.css
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/fc8e6f9e95e50f6da80942bd29d57886659233629d8caf66ac456117953186c6-EnvironmentUrls.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0496306d944faeb488779bad1af0738e.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/fc00826f9e0f8fd2f6bfe2152fb652d4f73e1a12e1ad50ad234d2f60854a311c-Polyfill.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/2f0fd0c2760ff1898187af6df3b764f4b08f77a315d0a33654f105f61b0ea6d0.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/69792ba68738c4df0266885d6e3f59a121c1a727d1399b3fb83590023892b9b7-HeaderScripts.js
Warning::
External script from client.px-cloud.net lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //client.px-cloud.net/PXbf8PROpW/main.min.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1c20c0f26166289e9aed14bcd31b854b9184f0da61c97197aa90314c599ebada-Theme.js
Warning::
External script from roblox.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://roblox.com/js/hsts.js?v=3
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1d87d1231072878a0f6164e84b8cfa6f90a1b31b18ba5d8f410b947d4b029fe8.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/4bae454bf5dab3028073fea1e91b6f19.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/f3a217cc73f72b82894dc26c4057369ae7a26d8b60e579dc807fc1963ff91598-InternationalCore.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/4d2c3582a51f181b1d85fcc080513179bebd9bbde79534e1803bb0bf69132445-TranslationResources.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/9731c232fa99c58b0dafafc81cc7905b.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/bfb3e7a7efed2f8ba4d12dc9fdb70dce1ff97ee13e988833a8638cf3ed8fd7f8.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/3bc4063d90978e122a5d55fdd0651e12df6c48badefd50214e478c84efd2ce2a-RealTime.js
Warning::
External script from apis.roblox.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://apis.roblox.com/rotating-client-service/v1/prelude/latest
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/075aed60ba5e82679966fc08959a907333b99aa464fb73ff11e01460fabb8024-CoreUtilities.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/b1eec88f581c575b721433689f5e4e1b5b47ec1df1bfbe5595660480ba2b104c-React.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/c2842bfcd97e55a576b1e191a6db391103a029714ef58c8932cd301be2bede05-WebBlox.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/809cf3ba3a13973a41bb8296d29a9a44c835d59d59ea85f075b50091c3b5d710-ReactUtilities.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/a38d4c0c0d2b4a9be634a64b8ef355a663a50d604f887dcbbfda6bdb1b46a1e1-ReactStyleGuide.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/f85d601076f1849ac8b25524d2c66878afe6b40ef64ff0d9c778c2811e26378b-Sentry.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/f237746d0aea12de9860040043f8d9bee7dab0baf4a87bb6fc87de6d160c4000.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/3756ad214dde52cb58a1300177547475.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e3ee1d26df4ed304eedf103641f389dcfe507d24f0aa079d366824f187f14ffa-AngularJsUtilities.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/47aa20a4d7ec095fabb9db116c99c5c798b2fa37161a5f59a340cb352279596f.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e35ef65070a20060049530937f97a7134f17ff26cbf6ecb553065a1698f4f7b4-Thumbnails.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/932cd731257164fc9eba426e6b3c5c8d08469faafc68ceb51f979f331807631d-PresenceStatus.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/7f4c2753c55dc89d4c9bf2dbfbf34e224194f6255457c0bd8c8c1ed0e6350f3a.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/215fe9b0fe92491f665645f65f57db6668d716af72e02465db259b715f061118.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/8e79851738baf4a99514ce726568faa52a0155d6298e0ed7521a210bde79c688-CaptchaCore.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5b3170c956b0c87ade14d298bcf45d0bae3991c1b427b7e1624bf94e488792c0-EmailVerifyCodeModal.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e07c2601022f7256cc4e3522fc9b0c91142e8d53962fa0031dafa4c0968b948f.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/cfcd81415cfff6b93a5e4b3af0fc378467122eb075bc63b1934c6136ae6cf8ac.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1050cb6a59208ef0b92013f9795f79f0b0923f3064fb36e1f64a1e68eebc8065-Challenge.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/88bacf62dae20f1d352d30afbd3df4c64ba7a24c551c6ee02152719cfb11b830.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/993eb6cb9b2ed18baadeca1088086e99ede5c9877cb7fe9700e0c6854bfeefe0.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/3fec2c529efef400a78a26a5c0a2d33e3e7ec0a13971616a31cd958214c71e37.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0fe97bffcb328f446dd0f247d2d42e740d354ef70bd54b9371ece139569a5e72.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/2da1b676b979a60ce3b9471d919f53c6523c606f10e6ba75fa3c168945b8455a.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/37e403d2aa6bd395faab8904f1be6844e5ca2a04f22db4581f6f586f97502094.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/94a14bf31ad0a75d3878f6772e6d5a251e7da9b64894e2176a07f65f4d79d8a3.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5fbd8389fb24177a5be64285e12645c445dee91f0a686d5bed5865f0e009d387.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e7e3731285889059db29156a67cd4e5358a2dbf2102a88f49403c524cab2ba91.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/264d4bed21a614e8a15806c5d97af0aa92f26a99f5bf89b2e94cd705728b9f1f.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e92d027c197738388b36f7a8164dd7bdfc61a638ac1acaeb577a92fb77a98857.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/730fcbf0eba6dd82de9b0029e157627f023e6f448059c5b4c6a4f356222b3ac0.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e8589b4de7e49cffa448d5ced862119339a4a366e7a9df35b7e886b68b3f9453.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/39fc596fe35569666d5a3de2830296da4164ebf2ab50e1268b6f4617cb51ce43.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/b41227fe1ecc1f4409f2e33f02d4d968f6d6389349d2221f481ff3b34e01a257.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/44ff0f2cc820b734456e36bcd3528a30460f0576ff6ff17478b2d84824b64abd.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/ea02dd03dee8d01ac1d70c79d1a67cd19f1a2cee81b5796e32ae0102917d8992-VerificationUpsell.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1ec10ace0c3c0f890c6558647b9d13a4754029d57a23364fea2d4d45603e4399.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/b83b0d0795c637d354a2cd0bc4237a6a20c17cce09fe9f7bb7311e80c6456471.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/c4b0a446b38285f3db5472340f4ef27d737c87b78348e36dc7acbcfec89d70bf.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0f91ae7a3efbb94ac1888931d53d6309fc65812b5a64b240c4861d9ab48011e1.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0b0a579affaba7e35d01943f279473e1f29ccf2203625397d4fa85d57b787d7f.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/ebc57f8a4aabceab9f38dda880bf11c04f2c92f441e535f0bcaa21b294736e65.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/9be42ea29239ed7bafa686796c7bdafcdeea5ef042f869f5b0f6d2dc3841f3dc-AccountSwitcher.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/63dacb1fad541c7c50a937cbab11cd0858b78187acc6c0af105381aa406e7147.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/8bb519e5ff19cfc45bbf0fb7bfcf333106922bf91abce540c3ff310336604cda.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/cd456bb506f1b0b06a2eb645ca018d367185ca84725ec00d524e35ce431f4a8c.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/ffae782b13fa411226cc0911c8dfdf91b55fe33a90b97c8e405d6eda7b217dc5-SearchLandingPage.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/babce206b492515143d22e96c7508c6c11b2f1298a66f5d98b0b2c567c005962.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/c1039204bbb80dc424ffb370f6fb6086478c6cc0e9a3c1f04c5f15d5fbc3a49d.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/05355f4f42e31d8469852179b730ec7f252467eb07a3139c9f3c2551f378bb9c.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/3d407f854110b95695bb0fa772c2e28c36c1a918acf6650b6a73f78676d61e74-Navigation.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/acb69086253120ce7945704ce42a0b684c9171ed587de439e2c0f9479fd4ad51.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/13b3b0cf97cfb5da4538eb0c59f252188b4f724f9328c264a58d24a714e41fe5.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1ebf6dab4801ce3c807f5b6312f1f738e76f6a244f962dc6b60af0cc128f33b4.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/6d0691ef28f81e89001d5aaf49fcc4123261046af9aafa9b6368c04aae0bcd98.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/537d3ec6e2cbc418604174fc9628078ed3fd4adc40e41637bc716c735a60677a.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/d3b821219ca935c708f781ace0c619de2a5844c4b8373127d128eddc2fbfa536.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/e171b6008ca0199b35099c1bf14e13b50d48456d5f4db1208a2421ef55e11de0.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/1f5c50ba918a5773a2e4a0308683747225b446c67f5089282954865c0e0f76a6.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5b4d2974640af2d875cc0e4a6c40f515e8ad343b0525513f03d93c35bcf9d7d7.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/3e545d98e98d8a8a188a4ef6ce70138b165954d7b45c0c0e54a5cf23ad0cc12b.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0477c995fb7f2d892410c1f80189d044.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/a798702325aae23c397f02e869706168d1cf683f7585efc080655d157611cf9c-StyleGuide.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0c81cd2082f742a1d2172f1a7577718f98acb633bf60d77623e2763a7b12100c-Builder.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/afb4ccdf2bd35f548be38a0f6f713688c247878f36577967dd380b0931d2850c-CookieBannerV3.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/d867bf1ff8bfaa4f2c1404f01fcf20c2ddb11f8e8255c16b73e5173cc31a39b1-Footer.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/cbae3669084e2a46b6f7730f4ec3e09af389fc747b2affe7e5173e463227ab4b.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/7043536ec0248f489b68b5e62dd3336f6962fb50d18a65b766453a206a772d4f.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/17c30f0868b8f64a10d24db42ca77291f709fb48ab9abd71a32b8c23219a92c6-AccessManagementUpsellV2.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/351c3e8fa2e21b1c1aa5509fcbac99d35086939f83d28d521c13e572404e2d16.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/458e4db7e6e243b2dc68967195eefe76d8329aa041cc0144cc28962e7ee3ea60.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/d2103009f17303199e698315acec635d3ebd96fb6072fa9804cd14c6fef0914d.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/4df6ec52559e1c250d3f2e8286e1ffca9f33998dcddcfaf096a4bcd364bbf808.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5c7d73b31182161484106be3dd2a04b74eba15dc051cc19a327dfb4cfb679cda.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/82a962b53d9852eb1628c0f6e9e0afb209f9e780a169a449cf73ce9248ed2006.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/4e3764ddbc2aaea3a862a3435933f0e45269a2154ec7436e67f19f6ce9240568.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/b9796ea7983f6d73db40cdbbb06c1b6e2011c9958e67ecd9e4e02ba266800954.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/ef0d5bf50bd1c7c225e07156087085a29bb9b23ee09368dee2338a64fe9a7745.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/eab0c77ddef43eef67fc50271db8c432c4293c959ecf2b491d1121a0d60846f1-ReactLanding.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5f2ee2913bf919a8576bbe4120a6d41b933e814a4779a0a3fc1d9d941c5ee368.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/686bd55707be42af370b81d2f36f55b6e10c56edb105502b3f9f0a34f7412bf5.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/286ccc74e823e8a7e867dd3fdf61521a1f66aae27a3d1cfe26e13b565e38fb57.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/b604dac29d89b56aef30844f099c5640c2f1870a97a06f4e692208d24097f9ed-Captcha.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/92e2673adda04b11e7b19ba36e6459532317515b86de84139115fcb45064cb28-ItemPurchaseUpsell.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/781f90cada34ac16dd871a54ca9d5fa888cae3bb7e5e54efc5613766f28090f5.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/93b87ee7ac50dd94377a95fab2382fbaca3d96d15d5de6a567536c7ce17f5ced.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/c8ac397606b8d4dfab9ea0d9af928273fcc51341a741b50ee831308aaed3517b-ItemDetailsHydrationService.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/f03f5cfcf75630103ff9505c7e05585c1ee6bdc9096b89021c07b16ef3f09abd-ItemPurchase.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/54c13aaea011e94d285d4171277dbaa0a2ec1bf763b408d71f2adc7f72bad919.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/0f75a173261ace474005809f5a4f985eb1f6974dd0a74683bb734a4f837f768d.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/6d0743dbab0070921c5bb3eff46802cead3a6881479fd3c902639ffba397d5f3-IdVerification.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/4e3e9c2f50f98960207aef1cc243c85914cda72e2c1f78ea66f35f61096e2c8a-AccessManagementUpsell.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/924736e791de090266dce0d5637f4f8f34a8be32da9272a9941c3b69c958e25e-GameLaunch.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/66701f5b0356dd24e9f018ea5668345c187f6f63cb70fc7125ed759fa5f5bedd.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/5d2b10e51dd6cc2329604087e74e8eeb57c37024d75e0be8c47eca40e741a269.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/18a39f1adad50fcd69442f5ddd58c68c80ee0ff59fadc808ffda3195ceb492a8.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/64daef195122aa9c881d456010e7b98d698b1c6b1aaba58c81abc27da0db8fed.js
Warning::
External script from js.rbxcdn.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://js.rbxcdn.com/45cc8da8884e84f4d4b83874be10ba50.js
Info::
script from static.cloudflareinsights.com has SRI protection
SRI Coverage 1 / 141 of external resources have integrity hashes
TagDomainIntegrity
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<link>css.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>client.px-cloud.net Missing
<script>js.rbxcdn.com Missing
<script>roblox.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>apis.roblox.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>js.rbxcdn.com Missing
<script>static.cloudflareinsights.com Protected
F
Email Security
Action
no DMARC, no SPF
FIX
no DMARC, no SPF
Warning::
No DMARC record found
Without DMARC, email receivers have no policy for handling authentication failures. Add a TXT record at _dmarc.<domain> starting with v=DMARC1.
Warning::
No SPF record found
Without SPF (Sender Policy Framework), receivers can't tell which servers are authorized to send mail for your domain. Add a TXT record at the apex starting with v=spf1, ending in -all.
Info::
No DKIM detected via common selectors
DKIM signs outbound mail to prove origin. We probed common selectors (default, google, selector1, etc.) without finding a record. If you use a non-standard selector, this is a false negative.
Info::
MTA-STS not configured
MTA-STS forces inbound mail to use TLS, preventing downgrade attacks. Requires both a TXT record at _mta-sts.<domain> and a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt.
Info::
TLS-RPT not configured
TLS-RPT (RFC 8460) lets MTAs report TLS-handshake failures, so you can detect and fix MTA-STS misconfigurations. Add a TXT record at _smtp._tls.<domain>.
Info::
BIMI not configured
BIMI (Brand Indicators for Message Identification) lets supporting clients (Gmail, Apple Mail, Yahoo) display your verified logo next to your messages. Optional but raises trust signals. Requires DMARC at p=quarantine or p=reject to be honored.
DMARC

No DMARC record found

Without DMARC, email receivers have no policy for handling authentication failures from your domain.

Without DMARC, email receivers have no policy for handling authentication failures. Add a TXT record at _dmarc.<domain> starting with v=DMARC1.

Why this matters

Without DMARC, anyone can send phishing emails using your domain name.

Learn more

DMARC tells receiving mail servers what to do with email that fails SPF/DKIM checks for your domain. With a strict 'p=reject' policy, spoofed emails get bounced; without it they reach the inbox. Domains used in phishing campaigns lose deliverability and brand trust fast.

Source: DMARC.org / NIST

Without SPF (Sender Policy Framework), receivers can't tell which servers are authorized to send mail for your domain. Add a TXT record at the apex starting with v=spf1, ending in -all.

Why this matters

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

DKIM signs outbound mail to prove origin. We probed common selectors (default, google, selector1, etc.) without finding a record. If you use a non-standard selector, this is a false negative.

Why this matters

No DKIM signature on outbound mail — receivers can't cryptographically prove the message came from your domain.

Learn more

DKIM signs outbound mail with a private key whose public half lives in DNS at <selector>._domainkey.<domain>. Without DKIM, DMARC alone can't tell legitimate mail from spoofs, and large mailbox providers (Gmail, Yahoo) increasingly require DKIM for inbox placement. Note: this check probes a curated list of common selectors; non-standard selectors produce a false negative.

Source: RFC 6376 / Google + Yahoo 2024 sender requirements

MTA-STS forces inbound mail to use TLS, preventing downgrade attacks. Requires both a TXT record at _mta-sts.<domain> and a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt.

Why this matters

Without MTA-STS, inbound mail can be silently downgraded to plain SMTP by a network attacker.

Learn more

MTA-STS (RFC 8461) tells sending mail servers to use TLS and to refuse delivery if TLS fails. Requires both a TXT record at _mta-sts.<domain> AND a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt. Without it, an active attacker on the network path can strip STARTTLS and read the email in plaintext.

Source: RFC 8461

TLS-RPT (RFC 8460) lets MTAs report TLS-handshake failures, so you can detect and fix MTA-STS misconfigurations. Add a TXT record at _smtp._tls.<domain>.

Why this matters

Without TLS-RPT, you have no visibility into inbound TLS failures — MTA-STS misconfigurations stay hidden until users complain.

Learn more

TLS-RPT (RFC 8460) is the feedback channel for MTA-STS: senders post aggregate reports of TLS-handshake failures to the URI in your _smtp._tls TXT record. Without it, an MTA-STS misconfiguration silently rejects mail and you find out only when someone notices missing email.

Source: RFC 8460

BIMI (Brand Indicators for Message Identification) lets supporting clients (Gmail, Apple Mail, Yahoo) display your verified logo next to your messages. Optional but raises trust signals. Requires DMARC at p=quarantine or p=reject to be honored.

Why this matters

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

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=()
C
Security Headers
Action
4 of 10 headers properly configured
REVIEW
4 of 10 headers properly configured
Warning::
HSTS is missing includeSubDomains
Without includeSubDomains, subdomains can still be accessed over HTTP.
Got: max-age=31536000 Expected: max-age=31536000; includeSubDomains
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: report-uri https://metrics.roblox.com/v1/csp/report?type=enforce; upgrade-insecu…
Info::
Cross-Origin-Opener-Policy is set but not 'same-origin'
Got: same-origin-allow-popups Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is present without version info
Got: cloudflare
Info::
Domain is in the Chrome HSTS preload list (status: preloaded)
Got: preloaded

Without includeSubDomains, subdomains can still be accessed over HTTP.

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

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

Learn more

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

Source: RFC 6797

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

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

Expected: require-corp
Why this matters

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

Learn more

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

Source: MDN / web.dev

Expected: same-origin
Why this matters

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

Learn more

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

Source: MDN COOP

C
Cross-Origin Tab Safety
Action
2 of 21 new-tab link(s) missing rel=noopener
REVIEW
2 of 21 new-tab link(s) missing rel=noopener
Warning::
2 link(s) open in a new tab without rel=noopener
Without rel="noopener", the destination tab can navigate the original tab via window.opener -- a reverse-tabnabbing phishing primitive. Modern browsers default to noopener since Chrome 88 / Firefox 79 / Safari 12.1, but explicit rel="noopener noreferrer" remains the documented best practice for older browsers, in-app webviews, and security scanners.
B
Trusted Types (XSS Sink Hardening)
Trusted Types not enabled
REVIEW
Trusted Types not enabled
Info::
Trusted Types not enabled
Trusted Types (CSP3) is a Chrome 83+ defense that requires DOM-XSS sinks (innerHTML, document.write, eval, ...) to receive a typed-and-sanitized value rather than a raw string. Adding `Content-Security-Policy: require-trusted-types-for 'script'; trusted-types default` neutralizes most DOM-XSS even when a payload reaches a sink. Adoption is currently ~0.1% of pages so this is informational; a roll-out usually starts in report-only mode.
C
Permissions-Policy Granularity
Action
No Permissions-Policy header set -- powerful features (camera / microphone / geolocation / payment / USB) default to allow-on-same-origin
REVIEW
No Permissions-Policy header set -- powerful features (camera / microphone / geolocation / payment / USB) default to allow-on-same-origin
Warning::
Permissions-Policy header not set -- features default to allow-on-same-origin
Without a `Permissions-Policy` (or legacy `Feature-Policy`) header, every powerful browser feature defaults to its spec default policy (typically `self`). A third-party iframe injected via XSS or a misconfigured embed can still request access to the user's camera, microphone, geolocation, payment APIs, USB devices, etc. Explicitly deny features the page doesn't need: ``` Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=(), accelerometer=(), gyroscope=() ``` Features the page legitimately uses can stay enabled with `feature=(self)`.
Got: header absent
B
Referrer-Policy Strictness
Referrer-Policy header not set -- browser default applies (modern: strict-origin-when-cross-origin; legacy browsers: no-referrer-when-downgrade)
REVIEW
Referrer-Policy header not set -- browser default applies (modern: strict-origin-when-cross-origin; legacy browsers: no-referrer-when-downgrade)
Info::
Referrer-Policy header not set -- browser default applies
Without an explicit `Referrer-Policy` header, the browser falls back to its default policy. Modern browsers (Chrome 85+, Firefox 87+, Safari 15+) default to `strict-origin-when-cross-origin`, which is privacy-safe. Legacy browsers default to the leaky `no-referrer-when-downgrade`, which sends the full URL (including path + query) on cross-origin HTTPS-to-HTTPS requests. Set an explicit header to ensure consistent behavior: ``` Referrer-Policy: strict-origin-when-cross-origin ``` This matches the modern browser default and is privacy-safe without breaking referrer-based same-origin analytics.
Got: header absent
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
C
Known vulnerability matches
Action
31 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
AngularJS1.6.3highPrototype pollution1.7.9
AngularJS1.6.3highangular vulnerable to super-linear runtime due to backtracking1.8.4
AngularJS1.6.3mediumXSS via JQLite DOM manipulation functions in AngularJS1.8.0
jQuery1.11.1mediumparseHTML() executes scripts in event handlers2.2.0
jQuery1.11.1medium3rd party CORS request may execute1.12.0
Bootstrap3.3.5mediumXSS is possible in the data-target attribute.3.4.0
Bootstrap3.3.5mediumXSS in collapse data-parent attribute3.4.0
Bootstrap3.3.5mediumXSS in data-target property of scrollspy3.4.0
Bootstrap3.3.5mediumXSS in data-container property of tooltip3.4.0
Bootstrap3.3.5mediumIn Bootstrap before 3.4.0, XSS is possible in the tooltip data-viewport attribute.3.4.0
Bootstrap3.3.5mediumIn Bootstrap before 3.4.0, XSS is possible in the affix configuration target property.3.4.0
jQuery1.11.1mediumjQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution3.4.0
Bootstrap3.3.5mediumXSS in data-template, data-content and data-title properties of tooltip/popover3.4.1
jQuery1.11.1mediumRegex in its jQuery.htmlPrefilter sometimes may introduce XSS3.5.0
jQuery1.11.1mediumpassing 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
AngularJS1.6.3mediumXSS may be triggered in AngularJS applications that sanitize user-controlled HTML snippets before passing them to JQLite methods like JQLite.prepend, JQLite.after, JQLite.append, JQLite.replaceWith, JQLite.append, new JQLite and angular.element.1.8.0
AngularJS1.6.3mediumAngular (deprecated package) Cross-site Scripting1.8.4
AngularJS1.6.3mediumangular vulnerable to regular expression denial of service via the angular.copy() utility1.8.4
AngularJS1.6.3mediumangular vulnerable to regular expression denial of service via the $resource service1.8.4
AngularJS1.6.3mediumangular vulnerable to regular expression denial of service via the <input type="url"> element1.8.4
Bootstrap3.3.5mediumBootstrap Cross-Site Scripting (XSS) vulnerability for data-* attributes3.4.1
AngularJS1.6.3mediumAngularJS Incomplete Filtering of Special Elements vulnerability1.8.4
AngularJS1.6.3mediumAngularJS Regular expression Denial of Service (ReDoS)1.9.9
AngularJS1.6.3lowXSS in $sanitize in Safari/Firefox1.6.5
AngularJS1.6.3lowXSS through SVG if enableSvg is set1.6.9
AngularJS1.6.3lowEnd-of-Life: Long term support for AngularJS has been discontinued as of December 31, 20211.999
Bootstrap3.3.5lowBootstrap before 4.0.0 is end-of-life and no longer maintained.3.999.999
jQuery1.11.1lowjQuery 1.x and 2.x are End-of-Life and no longer receiving security updates2.999.999
AngularJS1.6.3lowAngularJS allows attackers to bypass common image source restrictions1.8.4
AngularJS1.6.3lowAngularJS allows attackers to bypass common image source restrictions1.8.4
AngularJS1.6.3lowAngularJS improperly sanitizes SVG elements1.8.4
A+
TLS & Certificates
TLS 1.3, 9 checks passed
PASS
TLS 1.3, 9 checks passed
Info::
TLS 1.3 is used
Got: TLS 1.3
Info::
Strong cipher suite is used
Got: TLS_AES_128_GCM_SHA256
Info::
HTTP/2 is negotiated
Got: h2
Info::
OCSP stapling enabled
Info::
Certificate is valid (expires in 124 days)
Got: 2026-12-24T23:59:59Z
Info::
Certificate chain has 4 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 3 domain(s)
Got: cloudflare.roblox.com, *.roblox.com, roblox.com
Info::
Certificate is issued by a trusted CA
Got: CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GB
Connection
Protocol
TLS 1.3
Cipher Suite
TLS_AES_128_GCM_SHA256
HTTP Version
h2 (HTTP/2)

Certificate Chain

Leaf Certificate
Subject CN=cloudflare.roblox.com,O=Roblox Corporation,ST=California,C=USIssuer CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GBValid 2026-06-09T00:00:00Z → 2026-12-24T23:59:59ZExpires in 124 days SANs cloudflare.roblox.com, *.roblox.com, roblox.comSignature SHA256-RSASerial 1b4c8688f5a215913746089dcbeccb79
Intermediate (CA Certificate)
Subject CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GBIssuer CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GBValid 2021-03-22T00:00:00Z → 2036-03-21T23:59:59ZExpires in 3499 days Signature SHA384-RSASerial 2c1a3c76e943ddddff191b31890aed71
Intermediate (CA Certificate)
Subject CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GBIssuer CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=USValid 2021-03-22T00:00:00Z → 2038-01-18T23:59:59ZExpires in 4167 days Signature SHA384-RSASerial d27fbbc1de359e5216ad6149586099c4
Intermediate (CA Certificate)
Subject CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=USIssuer CN=AAA Certificate Services,O=Comodo CA Limited,L=Salford,ST=Greater Manchester,C=GBValid 2019-03-12T00:00:00Z → 2028-12-31T23:59:59ZExpires in 862 days Signature SHA384-RSASerial 3972443af922b751d7d36c10dd313595
A
WAF / Bot Protection
Cloudflare
PASS
Cloudflare
Info::
Cloudflare detected
Detected via: cf-ray: a2f37ebceb18eedf-CDG
Got: Cloudflare
A
security.txt
Vulnerability disclosure policy
PASS
Vulnerability disclosure policy
Info::
security.txt found
Got: https://www.roblox.com/.well-known/security.txt
Warning::
security.txt: Missing required 'Expires' field (RFC 9116)

security.txt

Contact: https://en.help.roblox.com/hc/articles/360038516512
A+
CSP Inline-Style Readiness
No inline style attributes -- strict CSP is feasible
PASS
No inline style attributes -- strict CSP is feasible
Info::
No inline style attributes detected
A+
Bot Challenge Detection
Scan reached real page content (no bot-protection interstitial)
PASS
Scan reached real page content (no bot-protection interstitial)
Info::
No bot-protection interstitial detected -- the rest of the report reflects the real page
A+
Soft-404 Detection
No soft-404 patterns detected in page title or headings
PASS
No soft-404 patterns detected in page title or headings
Info::
No soft-404 patterns detected in page title or headings
A+
Empty Page Detection
Page has substantive body text and no placeholder / template-leak signals
PASS
Page has substantive body text and no placeholder / template-leak signals
Info::
Page has substantive body text and no placeholder / template-leak signals
A+
Geo-Restriction Detection
No geo-restriction signals detected -- scan reached the page from an allowed region
PASS
No geo-restriction signals detected -- scan reached the page from an allowed region
Info::
No geo-restriction detected
A+
Maintenance Mode Detection
No maintenance-mode signals detected -- scan reached a normal page
PASS
No maintenance-mode signals detected -- scan reached a normal page
Info::
No maintenance-mode signals detected
A+
CORS Depth
No CORS response headers -- the resource is same-origin-only by browser default
PASS
No CORS response headers -- the resource is same-origin-only by browser default
Info::
No CORS response headers -- the resource is same-origin-only by browser default
A+
Source Map Exposure
No source maps accessible (probed 1 candidate URL(s))
PASS
No source maps accessible (probed 1 candidate URL(s))
Info::
No source maps accessible across 1 probed candidate(s)
A+
HTML Version Disclosure
No software-version disclosures in HTML
PASS
No software-version disclosures in HTML
Info::
No software-version disclosures in HTML
A+
Open Redirect Surface
No redirect-shaped query parameters in DOM links
PASS
No redirect-shaped query parameters in DOM links
Info::
No redirect-shaped query parameters in DOM links
A+
Auth Security
Page is not a login form -- auth-security checks are N/A
PASS
Page is not a login form -- auth-security checks are N/A
Info::
Page does not appear to be a login form
A+
Subdomain Inventory Exposure
No risky subdomain names in certificate SANs
PASS
No risky subdomain names in certificate SANs
Info::
No risky subdomain names in certificate SANs
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::
security.txt is present — good practice
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 ExposedSecurity PolicyInfo
/package.json Not founddependency-manifest
/composer.json Not founddependency-manifest
/Gemfile Not founddependency-manifest
/Gemfile.lock Not founddependency-manifest
/requirements.txt Not founddependency-manifest
/pom.xml Not founddependency-manifest
/.gitlab-ci.yml Not foundci-config
/.travis.yml Not foundci-config
A+
API Surface
No API specs or GraphQL introspection found (probed 11 candidate path(s))
PASS
No API specs or GraphQL introspection found (probed 11 candidate path(s))
Info::
No API specs or GraphQL introspection found (probed 11 path(s))
A
Transport Security
HTTP/3, HSTS, and TLS version analysis
PASS
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.
Info::
HSTS enabled (base policy)
Info::
HSTS missing includeSubDomains
Without includeSubDomains, HSTS only protects the exact domain.
Info::
TLS 1.3 in use (fastest handshake, 1-RTT)
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback