CORS Tester

Use this little website to test if a URL is setup correctly to work with CORS.




If your CORS setup is not using a wildcard then this should be a domain that matches your AllowedOrigins


Shareable link:

Results

This URL will not work correctly with CORS.

What's wrong?

It does not have the access-control-allow-origin header set to *. Without this header, requests from other domains cannot be made to it via a users browser.

How to fix it?

If you have access to the server for the URL, you'll need to modify it to add the access-control-allow-origin header. If you do not have access, you'll need to upload the file somewhere else.

Headers

These are the response headers received when making the request.

cf-cache-status: DYNAMIC
cf-ray: 8ac1b31893c01050-ORD
connection: keep-alive
content-length: 0
content-security-policy: script-src 'self'
date: Thu, 01 Aug 2024 00:26:57 GMT
referrer-policy: same-origin
server: cloudflare
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: DENY
x-xss-protection: 1; mode=block
  

CORS tester was built by @mscccc. The code is available on GitHub. Sponsored by HTML/CSS to Image.