http-sec-audit

http-sec-audit is a skill for Claude Code from NovaCode37/claude-security-skills. It costs 101 tokens per session (595 once invoked), scanned A, original, MIT.

A checker for website security headers and cookie settings. These are browser instructions that help control encryption, framing, cross-site requests, and access to cookies.

In plain words
What is it for?
Use it to review CSP, HSTS, framing protection, content-type sniffing, referrer and permissions policies, server version banners, and Secure, HttpOnly, or SameSite cookie flags.
Why use it?
It finds missing or unsafe settings that can make a website easier to attack or reveal unnecessary server information. It can inspect a live site or saved response headers.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-security-skills plugin — 8 skills shipped together

Good fit Use it to review CSP, HSTS, framing protection, content-type sniffing, referrer and permissions policies, server version banners, and Secure, HttpOnly, or SameSite cookie flags.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/novacode37/claude-security-skills/http-sec-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add NovaCode37/claude-security-skills --skill http-sec-audit
Clone the repo
git clone --depth 1 https://github.com/NovaCode37/claude-security-skills

Made for: Claude Code.

Or install claude-security-skills, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for http-sec-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/novacode37/claude-security-skills/http-sec-audit/github.svg)](https://agentmods.dev/skills/novacode37/claude-security-skills/http-sec-audit)
Your own site
<a href="https://agentmods.dev/skills/novacode37/claude-security-skills/http-sec-audit"><img src="https://agentmods.dev/badge/skills/novacode37/claude-security-skills/http-sec-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for http-sec-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/novacode37/claude-security-skills/http-sec-audit"><img src="https://agentmods.dev/badge/skills/novacode37/claude-security-skills/http-sec-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 595 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.00595
Opus 5 $0.00051 $0.00298
Sonnet 5 $0.00020 $0.00119
Haiku 4.5 $0.00010 $0.00060

Measured yesterday against content hash af938cc3844d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

http-sec-audit scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 2 executable files (audit.py, tests/test_audit.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

offline-testable; live scanning uses only Python's stdlib `urllib`.
skills/http-sec-audit/SKILL.md · 62 lines

What it actually says

HTTP Security Header Audit

Checks a site's response headers against modern web-security best practices and returns prioritized findings with concrete fixes. The analysis core is pure and offline-testable; live scanning uses only Python's stdlib urllib.

When to use this skill

  • "Audit the security headers on https://example.com."
  • "Is my CSP / HSTS / cookie config correct?"
  • "Why is this site flagged for missing headers?"

What it checks

  • Content-Security-Policy — presence, unsafe-inline, wildcards.
  • Strict-Transport-Security — presence and max-age length.
  • X-Content-Type-Options: nosniff, X-Frame-Options / frame-ancestors.
  • Referrer-Policy, Permissions-Policy.
  • Information disclosureServer / X-Powered-By version banners.
  • CookiesSecure, HttpOnly, SameSite (incl. SameSite=None without Secure).

How to run it

# Live scan
python skills/http-sec-audit/audit.py https://example.com

# JSON output
python skills/http-sec-audit/audit.py https://example.com --json

# Offline: audit a saved raw header block (no network)
python skills/http-sec-audit/audit.py --headers-file response_headers.txt

# Only fail CI on high/critical (a missing Permissions-Policy is LOW and
# shows up on almost every site)
python skills/http-sec-audit/audit.py https://example.com --min-severity high

Exit codes: 0 clean · 1 findings reported · 2 fetch/usage error. Every reported finding fails the build; raise --min-severity to filter advisory findings out of both the report and the exit code.

  1. Run the audit (live, or offline against captured headers).
  2. Group findings by severity and present each with its one-line fix.
  3. Offer ready-to-paste header snippets for the user's stack (nginx, Apache, Express, etc.) for the missing headers.
  4. Only scan sites the user owns or is authorized to test.
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +6 lines af938cc3844d
  2. 11d ago First seen · 56 lines · 101 tokens per session scan A 2f40c51ade93

Subscribe to this mod's changes

http-sec-audit is a skill published in the GitHub repository NovaCode37/claude-security-skills (11 stars, last pushed yesterday), licensed MIT. It adds 101 tokens to every session and 595 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

owasp-security

Use when reviewing code for security vulnerabilities, implementing authentication/authorization, handling user input, or discussing web application security. Covers OWASP Top 10:2025, ASVS 5.0, LLM Top 10 (2025), and Agentic AI security (2026).

agamm/claude-code-owasp · 62 tokens

report-writing

Bug bounty report writing for H1/Bugcrowd/Intigriti/Immunefi — report templates, human tone guidelines, impact-first writing, CVSS 3.1 scoring, title formula, impact statement formula, severity decision guide, downgrade counters, pre-submit checklist. Use after validating a finding and before submitting. Never use…

Mikacr1138/claude-bug-bounty · 82 tokens

triage-validation

Finding validation before writing any report — 7-Question Gate (all 7 questions), 4 pre-submission gates, always-rejected list, conditionally valid with chain table, CVSS 3.1 quick reference, severity decision guide, report title formula, 60-second pre-submit checklist. Use BEFORE writing any report. One wrong answer…

Mikacr1138/claude-bug-bounty · 87 tokens

web2-recon

Web2 recon pipeline — subdomain enumeration (subfinder, Chaos API, assetfinder), live host discovery (dnsx, httpx), URL crawling (katana, waybackurls, gau), directory fuzzing (ffuf), JS analysis (LinkFinder, SecretFinder), continuous monitoring (new subdomain alerts, JS change detection, GitHub commit watch). Use when…

Mikacr1138/claude-bug-bounty · 103 tokens

security-arsenal

Security payloads, bypass tables, wordlists, gf pattern names, always-rejected bug list, and conditionally-valid-with-chain table. Use when you need specific payloads for XSS/SSRF/SQLi/XXE/IDOR/path-traversal, bypass techniques, or to check if a finding is submittable. Also use when asked about what NOT to submit.

Mikacr1138/claude-bug-bounty · 84 tokens

web2-vuln-classes

Complete reference for 18 web2 bug classes with root causes, detection patterns, bypass tables, exploit techniques, and real paid examples. Covers IDOR, auth bypass, XSS, SSRF (11 IP bypass techniques), SQLi, business logic, race conditions, OAuth/OIDC, file upload (10 bypass techniques), GraphQL, LLM/AI (ASI01-ASI10…

Mikacr1138/claude-bug-bounty · 132 tokens