This source did not publish a separate summary. Review SKILL.md before using the skill.
SKILL.md
Auditing CORS Policy
Overview
CORS misconfiguration is one of the most common middle-severity findings
in web bug bounties. The browser-enforced rules are subtle, the failure
modes are silent (the wrong cors response just works until an attacker
weaponizes it), and the "fix" engineers reach for —
Access-Control-Allow-Origin: * — opens the very class of attacks CORS
was meant to prevent when paired with credentials.
This skill probes each common CORS misconfiguration with synthetic
Origin headers and grades the response.
When the skill produces findings
Finding
Severity
Threshold
Affected control
Origin reflected without validation
HIGH
Synthetic Origin https://attacker.example echoed in Allow-Origin
OWASP A05:2021
Allow-Credentials:true with wildcard Allow-Origin
CRITICAL
Browser rejects but server is asserting the worst combo
OWASP A05:2021
Allow-Credentials:true with reflected Origin
CRITICAL
Attacker site can read authenticated responses cross-origin
OPTIONS preflight with Access-Control-Request-Headers / Method
For each, it records the response's CORS headers and grades against
the threshold table above.
Step 3 — Interpret findings
CRITICAL = credential-stealing chain available; ship same-day fix.
HIGH = arbitrary cross-origin read of public-but-sensitive content;
ship within sprint.
MEDIUM/LOW = posture hardening; backlog.
Step 4 — Cross-skill chaining
If CORS findings land alongside auth findings (skill #20 confirming- pentest-authorization would have caught the auth side at engagement
scope), suggest authentication-validator plugin for full session-
handling audit.
Examples
Example 1 — Reflected-origin bug bounty triage
User: "Bug bounty submission claims CORS bypass on /api/profile."