Skip to content
Security
Skill

/cors-auditor

Audit a site's Cross-Origin Resource Sharing (CORS) configuration for misconfigurations — wildcard origin with credentials, reflected arbitrary Origin, the 'null' origin, overly broad allowed methods, and risky credentialed CORS. Use when the user asks to "check my CORS config",

From plugin
claude-security-skills
118 skills
Install
$ npx -y skills add NovaCode37/claude-security-skills --skill cors-auditor --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cors-auditor

Context preview

The summary Claude sees to decide when to auto-load this skill.

Audit a site's Cross-Origin Resource Sharing (CORS) configuration for misconfigurations — wildcard origin with credentials, reflected arbitrary Origin, the 'null' origin, overly broad allowed methods, and risky credentialed CORS. Use when the user asks to "check my CORS config",

SKILL.md

cors-auditor.SKILL.md
name: cors-auditor
description: >-
  Audit a site's Cross-Origin Resource Sharing (CORS) configuration for
  misconfigurations — wildcard origin with credentials, reflected arbitrary
  Origin, the 'null' origin, overly broad allowed methods, and risky
  credentialed CORS. Use when the user asks to "check my CORS config", "is my
  API's CORS safe", "test for CORS misconfiguration", or "why can any site call
  my API".
license: MIT

CORS Misconfiguration Auditor

Inspects CORS response headers and reports exploitable misconfigurations with fixes. The analysis core is pure and offline-testable; live probing uses only stdlib `urllib` and sends a throwaway `Origin` header to detect origin reflection.

When to use this skill

  • "Audit the CORS configuration of https://api.example.com."
  • "Is it safe that my API returns Access-Control-Allow-Origin: *?"
  • "Does my server reflect any Origin back?"

What it checks

  • **Wildcard + credentials** — `Allow-Origin: *` with

`Allow-Credentials: true` (`cors-wildcard-credentials`).

  • **Reflected origin** — server echoes the request Origin back

(`cors-reflected-origin`); critical when combined with credentials.

  • **Null origin** — `Allow-Origin: null` (`cors-null-origin`).
  • **Wildcard origin** — `Allow-Origin: *` without credentials (`cors-wildcard`).
  • **Credentialed CORS** — informational note when credentials are enabled

(`cors-credentials-enabled`).

  • **Wildcard methods** — `Allow-Methods: *` (`cors-methods-wildcard`).

How to run it

# Live probe (sends a throwaway Origin to test reflection)
python skills/cors-auditor/auditor.py https://api.example.com

# Probe with a specific origin
python skills/cors-auditor/auditor.py https://api.example.com --origin https://evil.example

# Offline: audit a captured header block; pass --origin to test reflection
python skills/cors-auditor/auditor.py --headers-file resp.txt --origin https://evil.example

# Only fail CI on high/critical (hides the medium wildcard + info notes)
python skills/cors-auditor/auditor.py https://api.example.com --min-severity high

**Exit codes:** `0` clean · `1` findings reported · `2` fetch/usage error. Every reported finding fails the build. The default reports everything down to `info` (including `cors-credentials-enabled`); raise `--min-severity` to `low`/`medium`/`high` to filter advisory notes out of both the report and the exit code.

Recommended workflow for Claude

1. Probe the endpoint (live) or audit captured headers (offline). 2. Explain each finding and why it is exploitable (e.g. reflected origin + credentials = cross-origin data theft). 3. Recommend an explicit origin allowlist and dropping credentials where not needed. 4. Only test APIs the user owns or is authorized to test.

Read more
Ships withclaude-security-skills

Security skills for Claude Code. Install them once and ask Claude, in plain language, to scan a repo for leaked secrets, review Python code, red-team an LLM for prompt injection, or audit HTTP headers, JWTs, Dockerfiles, CORS, and dependencies.

Get the whole plugin
Stats
11
Stars
6
Forks
Active
Maintenance
Python
Language
MIT
License
7d ago
Last commit
3mo ago
Created

Repo: NovaCode37/claude-security-skills

Other skills on claude-security-skills.