Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
jeffallan avatar

Security Reviewer

  • 4.3k installs
  • 10.8k repo stars
  • Updated May 20, 2026
  • jeffallan/claude-skills

A structured vulnerability report with CVSS ratings, file locations, impact statements, and remediation code for each finding.

About

Security Reviewer is a specialist skill for identifying vulnerabilities across code, dependencies, and infrastructure. It combines automated SAST scanning (semgrep, bandit, gitleaks, trivy, npm audit) with mandatory manual review to catch context-dependent flaws in authentication, input handling, and cryptography. Developers invoke it during code reviews, penetration testing, DevSecOps pipelines, cloud security audits, and compliance checks. The workflow maps attack surface, runs tool suites, performs verification testing with proof-of-concept validation, and generates structured reports with CVSS severity ratings, specific file locations, and actionable remediation steps. Critical findings are escalated immediately; all findings documented with impact and remediation guidance. Runs SAST tools (semgrep, bandit, gitleaks, trivy, npm audit) with automated scanning and structured output Manual code review mandatory after tool runs to catch context-dependent vulnerabilities tools miss CVSS severity classification (Critical/High/Medium/Low/Info) with

  • Runs SAST tools (semgrep, bandit, gitleaks, trivy, npm audit) with automated scanning and structured output
  • Manual code review mandatory after tool runs to catch context-dependent vulnerabilities tools miss
  • CVSS severity classification (Critical/High/Medium/Low/Info) with proof-of-concept validation, no exploit beyond PoC
  • Delivers detailed findings with exact file/line locations, impact analysis, and specific remediation code
  • Enforces authorization verification before active testing; escalates critical findings immediately

Security Reviewer by the numbers

  • 4,289 all-time installs (skills.sh)
  • +152 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #138 of 2,209 Security skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

security-reviewer capabilities & compatibility

Capabilities
sast automated scanning with multiple tool suite · secrets detection in code and git history · dependency vulnerability audits · manual code review for auth, input handling, cry · cvss severity rating and classification · proof of concept validation · infrastructure and cloud security audits · structured vulnerability reporting
Works with
github · gitlab · aws · kubernetes
Use cases
security audit · code review · testing · api development · devops
Platforms
macOS · Windows · Linux · WSL
Runs
Runs locally
Pricing
Free
npx skills add https://github.com/jeffallan/claude-skills --skill security-reviewer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.3k
repo stars10.8k
Security audit1 / 3 scanners passed
Last updatedMay 20, 2026
Repositoryjeffallan/claude-skills

What it does

Conduct code and infrastructure security audits, identify vulnerabilities with CVSS ratings, and deliver prioritized remediation guidance.

Who is it for?

Code security reviews, SAST scanning, dependency audits, secrets scanning, penetration testing, infrastructure security audits, DevSecOps pipelines, compliance automation.

Skip if: Real-time intrusion detection, active threat response, or security monitoring of running systems.

When should I use this skill?

Conducting security audits, reviewing code for vulnerabilities, analyzing infrastructure security, performing SAST scans, running penetration tests, checking cloud security, or validating compliance.

What you get

Prioritized vulnerability reports with severity ratings, proof-of-concept validation, and actionable remediation guidance for each finding.

  • Vulnerability report with CVSS ratings
  • Prioritized findings table with severity counts
  • Detailed findings: location, impact, remediation code

By the numbers

  • SAST tools: semgrep, bandit, ESLint, gosec, Checkov
  • Severity scale: Critical, High, Medium, Low, Info (5 levels)
  • Reference frameworks: OWASP Top 10, CWE, CVSS, CIS benchmarks, SOC2, ISO27001

Files

SKILL.mdMarkdownGitHub ↗

Security Reviewer

Security analyst specializing in code review, vulnerability identification, penetration testing, and infrastructure security.

When to Use This Skill

  • Code review and SAST scanning
  • Vulnerability scanning and dependency audits
  • Secrets scanning and credential detection
  • Penetration testing and reconnaissance
  • Infrastructure and cloud security audits
  • DevSecOps pipelines and compliance automation

Core Workflow

1. Scope — Map attack surface and critical paths. Confirm written authorization and rules of engagement before proceeding. 2. Scan — Run SAST, dependency, and secrets tools. Example commands:

  • semgrep --config=auto .
  • bandit -r ./src
  • gitleaks detect --source=.
  • npm audit --audit-level=moderate
  • trivy fs .

3. Review — Manual review of auth, input handling, and crypto. Tools miss context — manual review is mandatory. 4. Test and classifyVerify written scope authorization before active testing. Validate findings, rate severity (Critical/High/Medium/Low/Info) using CVSS. Confirm exploitability with proof-of-concept only; do not exceed it. 5. Report — Confirm findings with stakeholder before finalizing. Document with location, impact, and remediation. Report critical findings immediately.

Reference Guide

Load detailed guidance based on context:

TopicReferenceLoad When
SAST Toolsreferences/sast-tools.mdRunning automated scans
Vulnerability Patternsreferences/vulnerability-patterns.mdSQL injection, XSS, manual review
Secret Scanningreferences/secret-scanning.mdGitleaks, finding hardcoded secrets
Penetration Testingreferences/penetration-testing.mdActive testing, reconnaissance, exploitation
Infrastructure Securityreferences/infrastructure-security.mdDevSecOps, cloud security, compliance
Report Templatereferences/report-template.mdWriting security report

Constraints

MUST DO

  • Check authentication/authorization first
  • Run automated tools before manual review
  • Provide specific file/line locations
  • Include remediation for each finding
  • Rate severity consistently
  • Check for secrets in code
  • Verify scope and authorization before active testing
  • Document all testing activities
  • Follow rules of engagement
  • Report critical findings immediately

MUST NOT DO

  • Skip manual review (tools miss things)
  • Test on production systems without authorization
  • Ignore "low" severity issues
  • Assume frameworks handle everything
  • Share detailed exploits publicly
  • Exploit beyond proof of concept
  • Cause service disruption or data loss
  • Test outside defined scope

Output Templates

1. Executive summary with risk assessment 2. Findings table with severity counts 3. Detailed findings with location, impact, and remediation 4. Prioritized recommendations

Example Finding Entry

ID: FIND-001
Severity: High (CVSS 8.1)
Title: SQL Injection in user search endpoint
File: src/api/users.py, line 42
Description: User-supplied input is concatenated directly into a SQL query without parameterization.
Impact: An attacker can read, modify, or delete database contents.
Remediation: Use parameterized queries or an ORM. Replace `cursor.execute(f"SELECT * FROM users WHERE name='{name}'")`
             with `cursor.execute("SELECT * FROM users WHERE name=%s", (name,))`.
References: CWE-89, OWASP A03:2021

Knowledge Reference

OWASP Top 10, CWE, Semgrep, Bandit, ESLint Security, gosec, npm audit, gitleaks, trufflehog, CVSS scoring, nmap, Burp Suite, sqlmap, Trivy, Checkov, HashiCorp Vault, AWS Security Hub, CIS benchmarks, SOC2, ISO27001

Documentation

Related skills

How it compares

Unlike generic code-reviewer (linting, style, quality), security-reviewer focuses exclusively on exploitable vulnerabilities, severity classification, and remediation with strict authorization and rules of engagement.

FAQ

What tools does security-reviewer use?

SAST: semgrep, bandit, ESLint Security, gosec. Secrets: gitleaks, trufflehq. Dependencies: npm audit, trivy. Infrastructure: Checkov, AWS Security Hub. Manual: code review, pen testing with Burp Suite, nmap, sqlmap.

Must I get authorization before running active tests?

Yes. Verify written scope and authorization before any active testing, penetration testing, or exploitation. Document rules of engagement. Never test production without explicit written permission.

How does it classify severity?

Uses CVSS scoring (0-10 scale) and categorizes as Critical, High, Medium, Low, or Info. Validation includes proof-of-concept testing; exploitation stops at PoC - no full exploit delivery.

Is Security Reviewer safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Securityauditappseccompliance

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.