What problem does it solve? Manually auditing source code for common web vulnerabilities is slow and inconsistent. This Skill provides a systematic checklist of grep commands and vulnerable code patterns for each OWASP Top 10 (2021) category, so security reviewers can methodically scan codebases for issues like broken access control, injection, and SSRF. ## Core Features & Use Cases - Pattern-Based Scanning: Ready-to-run grep commands for each OWASP category (A01-A10) targeting JavaScript, TypeScript, Python, Java, Ruby, Go, and PHP codebases. - Vulnerable Code Examples: Side-by-side BAD/GOOD code snippets showing insecure patterns (e.g., missing ownership checks, string-interpolated SQL) and their remediations. - Bounty Prioritization: A ranked list of vulnerability classes by payout potential for bug bounty hunting. - Use Case: During a security review of a Node.js API, run the A01 access control greps to find routes missing authorization middleware, then use the A03 injection patterns to locate raw SQL queries built with string concatenation. ## Quick Start Scan this repository for OWASP Top 10 vulnerability patterns, starting with broken access control and SQL injection.