CORS Checker
Enter a domain — the service will send OPTIONS and GET requests and inspect the CORS headers

CORS Checker — check Cross-Origin headers

The service sends an OPTIONS preflight request and a GET request with the header Origin: https://101ip.ru and analyses the CORS headers in the server response.

Main CORS headers

Important: wildcard and credentials

The value Access-Control-Allow-Origin: * forbids the use of Allow-Credentials: true. The browser will block such a response. For authenticated requests, a specific origin must be specified.

When to use CORS Checker