Notre avis
Ce skill guide des tests d'intrusion structurés et des assessments red team, couvrant les phases de reconnaissance, test d'applications web, API, réseau, cloud, preuve de concept et rapport.
Points forts
- Couverture complète du cycle de vie d'un test d'intrusion
- Phases modulaires exécutables indépendamment
- Guidage méthodique basé sur l'OWASP Top 10
- Génération de rapports structurés avec sévérité et remédiation
Limites
- Nécessite une autorisation écrite préalable (hors bug bounty)
- Dépend des outils installés localement
- Ne remplace pas un vrai pentest humain pour des contextes complexes
Lors d'engagements autorisés de test de sécurité pour évaluer méthodiquement la surface d'attaque d'une cible.
Sans autorisation explicite ou pour des tests de sécurité non intrusifs comme des audits de conformité légers.
Analyse de sécurité
PrudenceThe skill enables execution of arbitrary Bash commands and network scans, which could be harmful if misused, but it includes explicit authorization reminders, anti-patterns against DoS and out-of-scope testing, and targets a legitimate professional use case for authorized assessments.
Aucun point d'attention détecté
Exemples
/red-team example.com/red-team example.com --phase recon/red-team example.com --phase webappname: red-team description: > Penetration testing and red team assessment skill for authorized engagements. Guides reconnaissance, web app testing, API security, network enumeration, cloud misconfiguration, PoC development, and report generation. Trigger when user says "pentest", "red team", "security audit", "vulnerability assessment", "bug bounty", or "red-team". user-invocable: true argument-hint: <target> [--phase recon|webapp|api|network|cloud|poc|report] allowed-tools: Read, Grep, Glob, Bash, WebFetch, Write, Edit, Agent
<objective> Run structured penetration tests and red team assessments against authorized targets. Covers the full engagement lifecycle from scoping through reporting. Each phase can run independently or as part of a full assessment.This skill assumes authorized testing. The operator is responsible for ensuring they have written permission (scope agreement, bug bounty program, or internal authorization) before running any active techniques. </objective>
<quick_start>
Full assessment against a target:
/red-team example.com
Single phase:
/red-team example.com --phase recon
Phases (run in order or standalone):
| Phase | What it does |
|-------|-------------|
| recon | Passive and active reconnaissance, OSINT, subdomain enumeration, port scanning |
| webapp | OWASP Top 10 testing, auth bypass, injection, XSS, SSRF, IDOR |
| api | API endpoint discovery, auth testing, rate limiting, mass assignment |
| network | Service enumeration, banner grabbing, known CVE checks, lateral movement paths |
| cloud | AWS/GCP/Azure misconfiguration checks, S3 buckets, IAM, metadata endpoints |
| poc | Build proof-of-concept scripts to demonstrate specific control failures to stakeholders |
| report | Generate structured findings report with severity ratings and remediation |
</quick_start>
Before any active testing, establish:
- Confirm target is in scope (domain, IP ranges, cloud accounts)
- Identify rules of engagement (no DoS, rate limits, time windows)
- Set up a working directory:
mkdir -p ./pentest-{target}-{date}/{recon,webapp,api,network,cloud,findings} - Install/verify tools are available (see tools.md)
Phase 2: Reconnaissance (see recon.md)
Passive recon first, active recon second:
- DNS enumeration, subdomain discovery, certificate transparency logs
- WHOIS, ASN lookup, IP range identification
- Technology fingerprinting (Wappalyzer-style header/response analysis)
- Google dorking, GitHub/GitLab secret scanning
- Shodan/Censys queries for exposed services
- Port scanning and service version detection
Save all findings to ./recon/ with timestamps.
Phase 3: Web Application Testing (see webapp.md)
Systematic OWASP Top 10 coverage:
- Injection (SQLi, NoSQLi, command injection, template injection)
- Broken authentication (credential stuffing vectors, session management, JWT flaws)
- Sensitive data exposure (directory traversal, backup files, source maps, .git exposure)
- XXE, SSRF, IDOR, broken access controls
- XSS (reflected, stored, DOM-based)
- Security misconfiguration (default creds, verbose errors, missing headers)
- CSRF, open redirects, clickjacking
Phase 4: API Security Testing (see api-testing.md)
- Endpoint enumeration (OpenAPI/Swagger discovery, JS file parsing, brute force)
- Authentication and authorization testing (BOLA/IDOR, broken function-level auth)
- Input validation (mass assignment, parameter pollution, type confusion)
- Rate limiting and resource exhaustion
- GraphQL-specific: introspection, batching attacks, nested query depth
Phase 5: Network Assessment (see network.md)
- Service enumeration and version detection
- Known CVE identification for detected service versions
- Default credential testing on exposed services
- SSL/TLS configuration analysis
- Lateral movement path identification
- Internal network segmentation testing (if in scope)
Phase 6: Cloud Security (see cloud.md)
- S3/GCS/Azure Blob public bucket enumeration
- IAM policy analysis and privilege escalation paths
- Metadata endpoint testing (169.254.169.254 / IMDS)
- Serverless function misconfiguration
- Container escape vectors
- Cloud-specific credential exposure
Phase 7: Proof of Concept (see poc.md)
When stakeholders need convincing, build targeted PoC scripts that demonstrate:
- Missing authentication (unauthenticated endpoints accepting state changes)
- No deduplication (identical replays all counted)
- No input validation (fabricated/malformed parameters accepted)
- No rate limiting (burst requests all accepted, measured with timing)
- Broken access controls (cross-account access, privilege escalation)
PoC scripts should be self-contained, print clear FINDING/OK verdicts per test, and include a summary suitable for pasting into a report or Slack thread.
Phase 8: Reporting (see report-template.md)
Generate a structured report:
- Executive summary
- Findings table (severity, CVSS, affected asset, description, evidence, remediation)
- Attack narrative (kill chain walkthrough)
- Remediation priorities </workflow>
<success_criteria>
- All in-scope phases completed with findings documented
- Each finding has: severity rating, evidence (screenshots/logs/requests), and remediation steps
- Report generated in
./findings/report.md - No out-of-scope testing performed
- All raw data preserved in phase-specific directories for reproducibility </success_criteria>
<anti_patterns>
- Running active scans without confirming scope and authorization
- Skipping passive recon and going straight to active scanning
- Testing for DoS/DDoS (out of scope unless explicitly authorized)
- Ignoring rate limits or running scans at full speed against production
- Reporting findings without evidence or reproduction steps
- Using outdated vulnerability databases without checking for patches </anti_patterns>
<detailed_references>
- references/tools.md - Required and recommended tool inventory
- references/recon.md - Reconnaissance techniques and commands
- references/webapp.md - Web application attack playbook
- references/api-testing.md - API security testing guide
- references/network.md - Network assessment procedures
- references/cloud.md - Cloud misconfiguration checks
- references/poc.md - Proof-of-concept script patterns for demonstrating findings
- references/report-template.md - Finding report template </detailed_references>
Auditeur de Securite
Securite
Analyse le code pour detecter les vulnerabilites OWASP Top 10.
Checklist de Sécurité OWASP
Securite
Génère des checklists de sécurité applicative basées sur l'OWASP Top 10.
Modélisation de Menaces
Securite
Génère des documents de modélisation de menaces avec analyse STRIDE.