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.
git clone --depth 1 https://github.com/briiirussell/cybersecurity-skillsWrote 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.
[](https://agentmods.dev/rules/briiirussell/cybersecurity-skills/web-pentest)<a href="https://agentmods.dev/rules/briiirussell/cybersecurity-skills/web-pentest"><img src="https://agentmods.dev/badge/rules/briiirussell/cybersecurity-skills/web-pentest/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.
<a href="https://agentmods.dev/rules/briiirussell/cybersecurity-skills/web-pentest"><img src="https://agentmods.dev/badge/rules/briiirussell/cybersecurity-skills/web-pentest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00114 | $0.02747 |
| Opus 5 | $0.00057 | $0.01373 |
| Sonnet 5 | $0.00023 | $0.00549 |
| Haiku 4.5 | $0.00011 | $0.00275 |
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 10d 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.
Reaches for credential filesmediumPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
- Backups / configs exposed — `/.git/`, `/.env`, `/backup.sql`, `/web.config`, `/server-status`, `/.aws/credentials` 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.
- HTTP headers — pull with `curl -I` and `curl -I -H "Origin: https://evil.com"`: How it starts
The opening of the file, as written. The whole thing — 202 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Pentest — Live Web Application Testing
Structured black-box / grey-box penetration testing of a live web application against an authorized target. Pairs with recon (which maps the surface) and complements owasp-audit (which reads the source). Use recon first; use this once you have a target list and credentials (or guest access).
Authorization Check
Before touching the target, confirm:
- Written authorization for this specific application (pentest engagement, bug bounty in-scope domain, CTF/lab, your own asset)
- The application is currently in scope and live (not deprecated, not under maintenance freeze)
- Test credentials provided (if grey-box), or guest access confirmed (if black-box)
- Out-of-scope items documented — production user data, payment flows, social engineering, DoS
If anything is unclear, ask before proceeding. Never assume authorization.
Methodology
Follows the OWASP Web Security Testing Guide (WSTG) structure. Each phase produces evidence; document everything as you go.
Phase 1: Configuration & deployment
Goal: understand what's running and how it's exposed.
- HTTP headers — pull with
curl -Iandcurl -I -H "Origin: https://evil.com":Server,X-Powered-Byrevealing stack- HSTS, CSP, X-Frame-Options, X-Content-Type-Options presence and values
- CORS —
Access-Control-Allow-Originreflection without an allow-list,Allow-Credentials: truepaired with*
- TLS —
testssl.sh https://targetorsslyze --regular target - Backups / configs exposed —
/.git/,/.env,/backup.sql,/web.config,/server-status,/.aws/credentials - Default admin paths —
/admin,/administrator,/manage,/console,/actuator/,/_debug/,/swagger,/graphql,/.well-known/ - Robots.txt and sitemap.xml — often list non-indexed but accessible endpoints
- Subdomain & host header testing — does the app behave differently when sent
Host: internal.target.com?
Phase 2: Identity management
Goal: understand who can be created, how, and with what privileges.
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.
- 10d ago First seen · 202 lines · 114 tokens per session scan B 35f57a425d02
web-pentest is a cursor rule published in the GitHub repository briiirussell/cybersecurity-skills (384 stars, last pushed 3mo ago), licensed MIT. It adds 114 tokens to every session and 2,747 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 2 findings (reaches for credential files, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
20-testing-generated-and-structure
Testing expectations, generated-file boundaries, and CLI structure contract.
fuzzing
Fuzzing setup and guidelines for skia-rs.
testing-and-quality
The testcomprehensive.py provides systematic testing of all 31 MCP tools.
smoke-monkey-tester
Smoke tests for core functionality and monkey/chaos tests aiming to break the system with randomized inputs. / TR: Sistemin temel fonksiyonlarını kontrol eden smoke testler ve rastgele girdilerle sistemi çökertmeyi hedefleyen monkey/chaos testleri.
STAGE_S5_TEST_POINTS
A staged workflow for turning approved requirements into a complete list of test points. It checks required earlier documents and records any requirement that has no matching test point.
testing
Testing conventions for Ion Design System using Jest and Angular Testing Library.