Owasp Top10 Reviewer
by Julian
A rigorous security auditor that scans code for OWASP Top 10 vulnerabilities with severity ratings and concrete fixes.
Secure checkout via Stripe
Works with the AI tools you already use
See it in action
You say
Your agent does
OWASP Top 10 Security Audit Report
Scope: get_profile endpoint — app.py Language/Framework: Python + Flask Risk Summary: 0 Critical 2 High 1 Medium 0 Low
A01: Broken Access Control — FAIL Finding: No authentication check. Any user can access any other user's profile by changing the user_id parameter (IDOR). Severity: High Fix: Add session/JWT check. Verify current_user.id == user_id before executing query.
A02: Cryptographic Failures — PASS Finding: No issues found in this snippet.
A03: Injection — FAIL Finding: f-string interpolation directly in SQL query. Passing user_id=1 OR 1=1 dumps the entire users table. Severity: High Fix: db.execute("SELECT * FROM users WHERE id = ?", (user_id,))
A04: Insecure Design — PASS A05: Security Misconfiguration — FAIL Finding: jsonify(result) returns all columns including password hashes. Severity: Medium Fix: SELECT id, name, email FROM users WHERE id = ?
A06–A10: PASS or N/A (not applicable to this endpoint snippet)
Overall Assessment: Two High-severity vulnerabilities allow any unauthenticated user to read or dump the entire users table. Fix A03 first — it is trivial to exploit with one request.
Immediate Actions:
- Replace f-string SQL with parameterized query (A03 — High)
- Add authentication + IDOR check (A01 — High)
- Restrict SELECT to needed columns (A05 — Medium)
What you get
About this skill
Automated OWASP Top 10 Security Auditing
Ensure your applications are secure before they ever hit production. This skill performs a rigorous, deep-dive security audit of your source code, API endpoints, and system designs, specifically checking against the 2021 OWASP Top 10 vulnerabilities.
What it does
It acts as an automated security architect that reviews your pull requests or snippets for risks like SQL injection, broken access control, and cryptographic failures. Unlike general-purpose LLM prompting, this skill follows a strict 10-point inspection protocol, ensuring no category is overlooked and every finding is backed by a concrete fix.
- Comprehensive Coverage: Systematic checks from A01 (Access Control) to A10 (SSRF).
- Development Framework Support: Expert analysis for Node.js, Python, Java, Go, and more.
- Context-Aware Ratings: Issues are categorized by severity (Critical to Low) based on real-world exploitability.
- Actionable Remediation: Every vulnerability includes the specific code change required to fix it.
Why use this skill
While standard AI might catch obvious bugs, this skill is programmed with a security-first mindset. It identifies structural design flaws, insecure configurations, and dependency risks that simple code reviews miss. The output is a professional, structured audit report ready for developers and stakeholders alike.
How to install
Drop the file into your AI Agent. Works with Claude, Cursor, ChatGPT, and 20+ more.
Reviews
No reviews yet
Be one of the first to try it. Every listed skill passes our trust checks below.
Security scanned
Passed our 8-point scan before listing
Fresh listing
Recently published to Agensi
30-day refund
Not a fit? Get your money back
Trust & safety
Security scanned
Verified clean 3 months ago
- 30-day refund guarantee
- One-time purchase, yours forever
- Secure checkout via Stripe
Also available in a bundle
Frequently Asked Questions
Popular in Security & Compliance

Api Security Scanner
Api Security Scanner - A Premium AI Agent Skill

sast-configuration
Automate the setup and optimization of Semgrep, SonarQube, and CodeQL for high-signal security testing.
prompt-injection-auditor-v2
Audit prompts and MCP tools for prompt injection. 47 attack patterns, OWASP LLM Top 10, generates adversarial tests. CVSS-scored.
security-first
Prevent vulnerabilities before they happen by forcing early security framing and secure-by-default design patterns.