Web Application Penetration Testing
A phased pentesting workflow for running web applications. Adapted from
Shannon's pipeline (Keygraph, AGPL — concepts only, no code borrowed).
Built around three rules:
- No exploit, no report — every finding requires reproducible evidence.
- Bounded scope — every active request goes against a target the operator
pre-declared. Off-scope hosts are refused.
- Bypass exhaustion before false-positive dismissal — a "blocked" payload
is not a clean bill of health until you've tried the bypass set.
⚠️ Hard Guardrails — Read Before Every Engagement
Violating any of these invalidates the engagement and may be illegal.
Authorization gate. Before the first active scan in a session, you
MUST confirm with the user, in writing, that they own or have written
authorization to test the target. Record the acknowledgement in
engagement/authorization.md (see template). No acknowledgement → no
active scanning. Reading public pages with curl is fine; sending
payloads is not.
Scope allowlist. Maintain engagement/scope.txt — one hostname or
CIDR per line. Every nmap, curl, whatweb, browser navigation, or
payload-bearing request MUST be against an entry in scope. If a target
redirects you off-scope (3xx to a different host, a link in HTML),
STOP and confirm with the user before following.
No production systems without paper. If the user hasn't told you
"yes, prod is in scope and I have written sign-off," assume not. Default
targets are staging, local docker, dedicated test instances.
Cloud metadata is off by default. Do not probe 169.254.169.254,
metadata.google.internal, 100.100.100.200, [fd00:ec2::254], or
equivalent unless the engagement explicitly includes SSRF-to-metadata
as a goal AND the target is one you control. The agent's browser tool
can reach these from inside your own infrastructure — don't.
Destructive payloads need approval. SQLi payloads that DROP/DELETE,
filesystem-write SSTI, command injection with rm/shutdown/mkfs,
anything that mutates beyond a single test row → ASK FIRST. The
approval.py system catches some; don't rely on it alone.
Aux-client leakage risk (Hermes-specific). This skill produces
sessions full of SQLi/XSS/RCE payloads, captured credentials, JWT
tokens. Hermes' compression and title-generation paths replay history
through the auxiliary client (often the main model). Anything sensitive
you write to the conversation can leave the box on the next compress.
Mitigation:
- Redact captured tokens/credentials to the LAST 6 CHARS before logging
them in any message. Full values go to
engagement/evidence/ files,
never into chat history.
- If the engagement is sensitive, set
auxiliary.title_generation.enabled: false
in ~/.hermes/config.yaml for the session.
Rate limit yourself. Default 200ms between active requests against
any single host. The recon-scan.sh script enforces this. Don't bypass
it without operator approval.
Authority of the report. This skill produces a security
assessment, not a "PASS." Even a clean run is "no exploitable issues
FOUND in scope X within time T using methods Y" — not "the application
is secure." Mirror that language in the report.
Phase 0: Engagement Setup
Before any scanning happens, create the engagement directory and
authorization acknowledgement.
ENGAGEMENT=engagement-$(date +%Y%m%d-%H%M%S)
mkdir -p "$ENGAGEMENT"/{evidence,findings,reports}
cd "$ENGAGEMENT"
Ask the user (verbatim):
"Confirm: (a) the target URL is [X], (b) you own this application
or have written authorization to test it, and (c) the engagement
may run for up to [N] hours starting now. Reply 'authorized' to
proceed."
Wait for explicit authorized response. Any other answer means STOP.
Record authorization to engagement/authorization.md using the
template in templates/authorization.md. Include:
- Target URL(s) and IP(s)
- Authorization basis (ownership / written authz from $name)
- Engagement window
- Out-of-scope items (production, third-party services, etc.)
- Operator name (the user driving this session)
Build scope.txt:
localhost
127.0.0.1
staging.example.com
192.168.1.0/24 # internal lab only, with operator OK
Read references/scope-enforcement.md before issuing the first
active request — that doc has the host-extraction rules you apply
to every command/URL before it goes out.
Phase 1: Pre-Recon (Code Analysis, optional)
Skip if no source access (black-box engagement).
If you have read access to the application source:
- Map the architecture — framework, routing, middleware stack
- Inventory sinks — every
execute(, os.system(, eval(,
template render, file read/write, redirect target
- Map auth — session cookie vs JWT, OAuth flows, password reset,
privileged endpoints
- Identify trust boundaries — what's authenticated, what's not,
what comes from
request.*
- Backward taint from each sink to a request source. Early-terminate
when proper sanitization is found (parameterized queries, allowlists,
shlex.quote, well-known escapers).
Output: evidence/pre-recon.md — architecture map, sink inventory,
suspected vulnerable code paths.
This is OFFLINE work. No traffic to the target.
Phase 2: Recon (Live, Read-Only)
Maps the attack surface. All requests are GETs of public pages, no
payloads yet. Still scope-bounded.
Verify scope. Resolve every target hostname → IP. Confirm IPs are
in scope (avoids the "DNS points somewhere unexpected" trap).
Network surface (only if scope permits port scanning):
nmap -sT -T3 --top-ports 100 -oN evidence/nmap.txt $TARGET
Use -T3 (default), not -T4/-T5. Stealthier and avoids tripping
IDS/IPS in shared environments.
Tech fingerprint:
whatweb -v $TARGET_URL > evidence/whatweb.txt
curl -sIk $TARGET_URL > evidence/headers.txt
Endpoint discovery:
- Crawl the app with the browser tool (
browser_navigate,
browser_get_images, follow links).
- Inspect
robots.txt, sitemap.xml, .well-known/*.
- Use the developer tools network panel via browser tool to capture
XHR/fetch calls.
Auth surface: Identify login, registration, password reset,
session cookie names, token formats. Do NOT send credentials yet —
just observe.
Correlate with pre-recon (if you have source). For each
evidence/pre-recon.md finding, mark whether the live surface
confirms it's reachable.
Output: evidence/recon.md — endpoints, technologies, auth model,
input vectors.
Phase 3: Vulnerability Analysis
One delegate_task per vulnerability class. Each agent reads
evidence/recon.md (+ evidence/pre-recon.md if present), produces
findings/<class>-queue.json using templates/exploitation-queue.json.
Use delegate_task with these focused subagents (parallel where possible):
| Class |
Goal |
Reference |
injection |
SQLi, command, path traversal, SSTI, LFI/RFI, deserialization |
references/vuln-taxonomy.md (slot types) |
xss |
Reflected, stored, DOM-based |
references/vuln-taxonomy.md (render contexts) |
auth |
Login bypass, JWT confusion, session fixation, OAuth flaws |
references/exploitation-techniques.md |
authz |
IDOR, vertical/horizontal escalation, business logic |
references/exploitation-techniques.md |
ssrf |
Internal reachability, metadata, protocol smuggling |
Skip metadata unless explicitly authorized |
infra |
Misconfig, info disclosure, default creds, exposed admin |
references/exploitation-techniques.md |
Each queue entry has: id, vuln class, source (file:line if known),
endpoint, parameter, slot type, suspected defense, verdict
(identified / partial / confirmed / critical), witness payload,
confidence (0-1), notes.
The analysis phase doesn't send malicious payloads yet — it stages them.
The exploitation phase actually fires them.
Phase 4: Exploitation (Proof-Based, Conditional)
Only run a sub-agent per class where the analysis queue has actionable
entries (identified or partial).
For each candidate:
- Pre-send check — host in scope? auth gate satisfied? payload
approved if destructive?
- Send the witness payload — minimal proof. SQLi:
' AND 1=1--
then ' AND 1=2--. XSS: a benign marker like
<svg/onload=console.log("HERMES-PENTEST-XSS")>. Never alert(1) in
stored XSS — it'll fire for other users in shared environments.
- Verify the witness fires — for blind injection, use a sleep
probe (
SLEEP(5)) and time the response. For SSRF, use a
tester-controlled callback host you own (NOT a public service like
webhook.site for sensitive engagements — exfil paths).
- Promote level:
- L1 Identified — pattern matched, no behavior change
- L2 Partial — sink reached, but defense in place
- L3 Confirmed — payload changed app behavior in observable way
- L4 Critical — data extracted, code executed, access escalated
- Bypass exhaustion before classifying as FP. For each candidate
that blocks: try at least the bypass set in
references/bypass-techniques.md for that class. Only after the set
is exhausted may you write verdict: false_positive.
- Record evidence for every L3/L4:
- Full request (method, URL, headers, body)
- Response (status, headers, relevant body excerpt)
- Reproducer command (curl one-liner)
- Impact statement
Output: findings/exploitation-evidence.md
Redact in evidence files:
- Any captured credentials/tokens → last 6 chars only in chat;
full value to
findings/secrets-vault.md (gitignored).
- Other users' PII → redact.
- Your test credentials → fine to keep.
Phase 5: Reporting
Generate the final report using templates/pentest-report.md. Sections:
- Executive summary
- Engagement scope (from
engagement/scope.txt)
- Authorization (from
engagement/authorization.md)
- Findings (L3/L4 only — proof-required). Per finding:
- Title, severity (CVSS 3.1), CWE
- Affected endpoint(s)
- Proof (request + response excerpt)
- Reproduction steps
- Impact
- Remediation
- Not-exploited candidates (L1/L2 with notes on what blocked them)
- Out-of-scope observations
- Methodology / tools used
- Limitations and what was NOT tested
Severity policy: CVSS only for L3/L4. L1/L2 are "candidates pending
verification" — don't assign CVSS to unverified findings.
When to Stop
- The user revokes authorization.
- A candidate finding clearly impacts production data and you don't have
approval for destructive testing — STOP and ask.
- The target starts returning 503/429 storms — back off, reconvene with
the operator.
- You discover something outside the contracted scope (e.g. an exposed
customer database while testing an unrelated endpoint). STOP, document,
report to the operator. Do not pivot without explicit approval — that
pivot is what makes pentesting illegal.
What This Skill Does NOT Cover
- Network-layer pentesting beyond port scanning (no Metasploit,
Cobalt Strike, AD attacks, network protocol fuzzing).
- Reverse engineering / binary analysis (see issue #383).
- Source-only static analysis (see issue #382).
- Active social engineering / phishing.
- Anything against systems the operator hasn't pre-authorized.
If the engagement needs any of these, escalate to a professional
pentester. This skill complements professional pentesting; it does
not replace it.
Further Reading
references/scope-enforcement.md — how to bound every active request
references/vuln-taxonomy.md — slot types, render contexts, OWASP map
references/exploitation-techniques.md — per-class payload patterns
references/bypass-techniques.md — common WAF/filter bypasses
templates/authorization.md — engagement authorization template
templates/pentest-report.md — final report template
templates/exploitation-queue.json — per-class finding queue schema
scripts/recon-scan.sh — rate-limited nmap+whatweb+headers wrapper
1---2name: web-pentest3description: Authorized web application penetration testing — reconnaissance, vulnerability analysis, proof-based exploitation, and professional reporting. Adapts Shannon's "No Exploit, No Report" methodology with hard guardrails for scope, authorization, and aux-client leakage. Active testing against running applications you own or have written authorization to test.4---56# Web Application Penetration Testing78A phased pentesting workflow for running web applications. Adapted from9Shannon's pipeline (Keygraph, AGPL — concepts only, no code borrowed).10Built around three rules:11121. No exploit, no report — every finding requires reproducible evidence.132. Bounded scope — every active request goes against a target the operator14 pre-declared. Off-scope hosts are refused.153. Bypass exhaustion before false-positive dismissal — a "blocked" payload16 is not a clean bill of health until you've tried the bypass set.1718---1920## ⚠️ Hard Guardrails — Read Before Every Engagement2122Violating any of these invalidates the engagement and may be illegal.23241. **Authorization gate.** Before the first active scan in a session, you25 MUST confirm with the user, in writing, that they own or have written26 authorization to test the target. Record the acknowledgement in27 `engagement/authorization.md` (see template). No acknowledgement → no28 active scanning. Reading public pages with `curl` is fine; sending29 payloads is not.30312. **Scope allowlist.** Maintain `engagement/scope.txt` — one hostname or32 CIDR per line. Every `nmap`, `curl`, `whatweb`, browser navigation, or33 payload-bearing request MUST be against an entry in scope. If a target34 redirects you off-scope (3xx to a different host, a link in HTML),35 STOP and confirm with the user before following.36373. **No production systems without paper.** If the user hasn't told you38 "yes, prod is in scope and I have written sign-off," assume not. Default39 targets are staging, local docker, dedicated test instances.40414. **Cloud metadata is off by default.** Do not probe `169.254.169.254`,42 `metadata.google.internal`, `100.100.100.200`, `[fd00:ec2::254]`, or43 equivalent unless the engagement explicitly includes SSRF-to-metadata44 as a goal AND the target is one you control. The agent's browser tool45 can reach these from inside your own infrastructure — don't.46475. **Destructive payloads need approval.** SQLi payloads that DROP/DELETE,48 filesystem-write SSTI, command injection with `rm`/`shutdown`/`mkfs`,49 anything that mutates beyond a single test row → ASK FIRST. The50 `approval.py` system catches some; don't rely on it alone.51526. **Aux-client leakage risk (Hermes-specific).** This skill produces53 sessions full of SQLi/XSS/RCE payloads, captured credentials, JWT54 tokens. Hermes' compression and title-generation paths replay history55 through the auxiliary client (often the main model). Anything sensitive56 you write to the conversation can leave the box on the next compress.57 Mitigation:58 - Redact captured tokens/credentials to the LAST 6 CHARS before logging59 them in any message. Full values go to `engagement/evidence/` files,60 never into chat history.61 - If the engagement is sensitive, set `auxiliary.title_generation.enabled: false`62 in `~/.hermes/config.yaml` for the session.63647. **Rate limit yourself.** Default 200ms between active requests against65 any single host. The recon-scan.sh script enforces this. Don't bypass66 it without operator approval.67688. **Authority of the report.** This skill produces a security69 assessment, not a "PASS." Even a clean run is "no exploitable issues70 FOUND in scope X within time T using methods Y" — not "the application71 is secure." Mirror that language in the report.7273---7475## Phase 0: Engagement Setup7677Before any scanning happens, create the engagement directory and78authorization acknowledgement.7980```bash81ENGAGEMENT=engagement-$(date +%Y%m%d-%H%M%S)82mkdir -p "$ENGAGEMENT"/{evidence,findings,reports}83cd "$ENGAGEMENT"84```85861. **Ask the user (verbatim):**87 > "Confirm: (a) the target URL is [X], (b) you own this application88 > or have written authorization to test it, and (c) the engagement89 > may run for up to [N] hours starting now. Reply 'authorized' to90 > proceed."91922. **Wait for explicit `authorized` response.** Any other answer means STOP.93943. **Record authorization** to `engagement/authorization.md` using the95 template in `templates/authorization.md`. Include:96 - Target URL(s) and IP(s)97 - Authorization basis (ownership / written authz from $name)98 - Engagement window99 - Out-of-scope items (production, third-party services, etc.)100 - Operator name (the user driving this session)1011024. **Build scope.txt:**103 ```104 localhost105 127.0.0.1106 staging.example.com107 192.168.1.0/24 # internal lab only, with operator OK108 ```1091105. **Read** `references/scope-enforcement.md` before issuing the first111 active request — that doc has the host-extraction rules you apply112 to every command/URL before it goes out.113114---115116## Phase 1: Pre-Recon (Code Analysis, optional)117118Skip if no source access (black-box engagement).119120If you have read access to the application source:1211221. **Map the architecture** — framework, routing, middleware stack1232. **Inventory sinks** — every `execute(`, `os.system(`, `eval(`,124 template render, file read/write, redirect target1253. **Map auth** — session cookie vs JWT, OAuth flows, password reset,126 privileged endpoints1274. **Identify trust boundaries** — what's authenticated, what's not,128 what comes from `request.*`1295. **Backward taint** from each sink to a request source. Early-terminate130 when proper sanitization is found (parameterized queries, allowlists,131 `shlex.quote`, well-known escapers).132133Output: `evidence/pre-recon.md` — architecture map, sink inventory,134suspected vulnerable code paths.135136This is OFFLINE work. No traffic to the target.137138---139140## Phase 2: Recon (Live, Read-Only)141142Maps the attack surface. All requests are GETs of public pages, no143payloads yet. Still scope-bounded.1441451. **Verify scope.** Resolve every target hostname → IP. Confirm IPs are146 in scope (avoids the "DNS points somewhere unexpected" trap).1471482. **Network surface** (only if scope permits port scanning):149 ```bash150 nmap -sT -T3 --top-ports 100 -oN evidence/nmap.txt $TARGET151 ```152 Use `-T3` (default), not `-T4/-T5`. Stealthier and avoids tripping153 IDS/IPS in shared environments.1541553. **Tech fingerprint:**156 ```bash157 whatweb -v $TARGET_URL > evidence/whatweb.txt158 curl -sIk $TARGET_URL > evidence/headers.txt159 ```1601614. **Endpoint discovery:**162 - Crawl the app with the browser tool (`browser_navigate`,163 `browser_get_images`, follow links).164 - Inspect `robots.txt`, `sitemap.xml`, `.well-known/*`.165 - Use the developer tools network panel via browser tool to capture166 XHR/fetch calls.1671685. **Auth surface:** Identify login, registration, password reset,169 session cookie names, token formats. Do NOT send credentials yet —170 just observe.1711726. **Correlate with pre-recon** (if you have source). For each173 `evidence/pre-recon.md` finding, mark whether the live surface174 confirms it's reachable.175176Output: `evidence/recon.md` — endpoints, technologies, auth model,177input vectors.178179---180181## Phase 3: Vulnerability Analysis182183One delegate_task per vulnerability class. Each agent reads184`evidence/recon.md` (+ `evidence/pre-recon.md` if present), produces185`findings/<class>-queue.json` using `templates/exploitation-queue.json`.186187Use `delegate_task` with these focused subagents (parallel where possible):188189| Class | Goal | Reference |190|-------|------|-----------|191| `injection` | SQLi, command, path traversal, SSTI, LFI/RFI, deserialization | `references/vuln-taxonomy.md` (slot types) |192| `xss` | Reflected, stored, DOM-based | `references/vuln-taxonomy.md` (render contexts) |193| `auth` | Login bypass, JWT confusion, session fixation, OAuth flaws | `references/exploitation-techniques.md` |194| `authz` | IDOR, vertical/horizontal escalation, business logic | `references/exploitation-techniques.md` |195| `ssrf` | Internal reachability, metadata, protocol smuggling | Skip metadata unless explicitly authorized |196| `infra` | Misconfig, info disclosure, default creds, exposed admin | `references/exploitation-techniques.md` |197198Each queue entry has: id, vuln class, source (file:line if known),199endpoint, parameter, slot type, suspected defense, verdict200(`identified` / `partial` / `confirmed` / `critical`), witness payload,201confidence (0-1), notes.202203The analysis phase doesn't send malicious payloads yet — it stages them.204The exploitation phase actually fires them.205206---207208## Phase 4: Exploitation (Proof-Based, Conditional)209210Only run a sub-agent per class where the analysis queue has actionable211entries (`identified` or `partial`).212213For each candidate:2142151. **Pre-send check** — host in scope? auth gate satisfied? payload216 approved if destructive?2172. **Send the witness payload** — minimal proof. SQLi: `' AND 1=1--`218 then `' AND 1=2--`. XSS: a benign marker like219 `<svg/onload=console.log("HERMES-PENTEST-XSS")>`. Never `alert(1)` in220 stored XSS — it'll fire for other users in shared environments.2213. **Verify the witness fires** — for blind injection, use a sleep222 probe (`SLEEP(5)`) and time the response. For SSRF, use a223 tester-controlled callback host you own (NOT a public service like224 webhook.site for sensitive engagements — exfil paths).2254. **Promote level:**226 - **L1 Identified** — pattern matched, no behavior change227 - **L2 Partial** — sink reached, but defense in place228 - **L3 Confirmed** — payload changed app behavior in observable way229 - **L4 Critical** — data extracted, code executed, access escalated2305. **Bypass exhaustion before classifying as FP.** For each candidate231 that blocks: try at least the bypass set in232 `references/bypass-techniques.md` for that class. Only after the set233 is exhausted may you write `verdict: false_positive`.2346. **Record evidence** for every L3/L4:235 - Full request (method, URL, headers, body)236 - Response (status, headers, relevant body excerpt)237 - Reproducer command (curl one-liner)238 - Impact statement239240Output: `findings/exploitation-evidence.md`241242**Redact in evidence files:**243- Any captured credentials/tokens → last 6 chars only in chat;244 full value to `findings/secrets-vault.md` (gitignored).245- Other users' PII → redact.246- Your test credentials → fine to keep.247248---249250## Phase 5: Reporting251252Generate the final report using `templates/pentest-report.md`. Sections:2532541. Executive summary2552. Engagement scope (from `engagement/scope.txt`)2563. Authorization (from `engagement/authorization.md`)2574. Findings (L3/L4 only — proof-required). Per finding:258 - Title, severity (CVSS 3.1), CWE259 - Affected endpoint(s)260 - Proof (request + response excerpt)261 - Reproduction steps262 - Impact263 - Remediation2645. Not-exploited candidates (L1/L2 with notes on what blocked them)2656. Out-of-scope observations2667. Methodology / tools used2678. Limitations and what was NOT tested268269**Severity policy:** CVSS only for L3/L4. L1/L2 are "candidates pending270verification" — don't assign CVSS to unverified findings.271272---273274## When to Stop275276- The user revokes authorization.277- A candidate finding clearly impacts production data and you don't have278 approval for destructive testing — STOP and ask.279- The target starts returning 503/429 storms — back off, reconvene with280 the operator.281- You discover something *outside* the contracted scope (e.g. an exposed282 customer database while testing an unrelated endpoint). STOP, document,283 report to the operator. Do not pivot without explicit approval — that284 pivot is what makes pentesting illegal.285286---287288## What This Skill Does NOT Cover289290- Network-layer pentesting beyond port scanning (no Metasploit,291 Cobalt Strike, AD attacks, network protocol fuzzing).292- Reverse engineering / binary analysis (see issue #383).293- Source-only static analysis (see issue #382).294- Active social engineering / phishing.295- Anything against systems the operator hasn't pre-authorized.296297If the engagement needs any of these, escalate to a professional298pentester. This skill complements professional pentesting; it does299not replace it.300301---302303## Further Reading304305- `references/scope-enforcement.md` — how to bound every active request306- `references/vuln-taxonomy.md` — slot types, render contexts, OWASP map307- `references/exploitation-techniques.md` — per-class payload patterns308- `references/bypass-techniques.md` — common WAF/filter bypasses309- `templates/authorization.md` — engagement authorization template310- `templates/pentest-report.md` — final report template311- `templates/exploitation-queue.json` — per-class finding queue schema312- `scripts/recon-scan.sh` — rate-limited nmap+whatweb+headers wrapper