Owasp Top10 Reviewer

    by Julian

    2

    A rigorous security auditor that scans code for OWASP Top 10 vulnerabilities with severity ratings and concrete fixes.

    Secure checkout via Stripe

    0 installsSecurity scanned

    Works with the AI tools you already use

    CClaude CodeCCursorCCodex CLIGGitHub CopilotGGemini CLI+17 more

    See it in action

    You say

    ```python @app.route("/user//profile") def get_profile(user_id): query = f"SELECT * FROM users WHERE id = {user_id}" result = db.execute(query) return jsonify(result)

    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:

    1. Replace f-string SQL with parameterized query (A03 — High)
    2. Add authentication + IDOR check (A01 — High)
    3. Restrict SELECT to needed columns (A05 — Medium)

    What you get

    Audit API endpoints for IDOR and broken access control vulnerabilities.Detect SQL injection risks and suggest parameterized query fixes.Identify sensitive data exposure through cryptographic failures or hardcoded keys.Scan configuration files for security misconfigurations and exposed secrets.Security audit before deploying a new API endpointCheck database queries and user inputs for injection risksReview authentication or session management code for vulnerabilities

    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

    Frequently Asked Questions

    Popular in Security & Compliance