"Tests for CORS misconfigurations that allow malicious sites to read your API responses."
CORS (Cross-Origin Resource Sharing) controls which websites are allowed to make cross-origin requests to your API. A misconfigured CORS policy can allow any website on the internet to make authenticated requests to your API and read the responses — effectively allowing attackers to steal data from your users.
The most dangerous misconfigurations are: allowing all origins with credentials, reflecting the request's Origin header back without validation, and allowing null origins. This tool sends targeted requests that test for these patterns specifically.