- What does it analyze?
- The Access-Control-* headers on a response. Detects misconfigurations: wildcards + credentials (forbidden), missing Vary: Origin (caching bug), overly permissive allow-origin.
- Can I test live URLs?
- Paste headers you've collected via browser DevTools or curl. The tool doesn't make HTTP requests itself — that would need a CORS proxy.
- What are the most common bugs?
- Allow-Origin: * with Allow-Credentials: true (blocked by browser). Forgetting Vary: Origin (wrong cached response). Missing Access-Control-Max-Age (slow preflights).
- Is CORS different from CSRF?
- Yes — CORS relaxes the same-origin policy for explicit opt-in. CSRF is an attack where malicious sites trigger actions on authenticated sessions. Different layers of web security.