vulnerability-scanner

Comprehensive vulnerability scanning for code, dependencies, and configurations with CVE detection

View on GitHub
Author Jeremy Longshore
Namespace @jeremylongshore/claude-code-plugins-plus
Category security
Version 1.0.0
Stars 1,193
Downloads 2
self.md verified
Table of content

Comprehensive vulnerability scanning for code, dependencies, and configurations with CVE detection

Installation

npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/vulnerability-scanner

Contents

Folders: commands, skills

Files: LICENSE, README.md

Documentation

Comprehensive vulnerability scanning for code, dependencies, and configurations with CVE detection and remediation guidance.

Features

Installation

/plugin install vulnerability-scanner@claude-code-plugins-plus

Usage

# Scan current directory
/scan

# Or use shortcut
/vuln

What It Scans

Code Vulnerabilities

Dependencies

Configuration Issues

Report Output

The plugin generates a detailed vulnerability report with:

  1. Executive Summary

    • Total vulnerabilities found
    • Breakdown by severity (Critical, High, Medium, Low)
    • Risk score
  2. Detailed Findings

    • Vulnerability description
    • Affected files and line numbers
    • CVE identifiers (if applicable)
    • CVSS score
    • Code snippets
    • Remediation steps
  3. Recommendations

    • Prioritized fix list
    • Security best practices
    • Links to security advisories

Example Report

VULNERABILITY SCAN REPORT
=========================
Scan Date: 2025-10-11
Total Vulnerabilities: 12
  - Critical: 2
  - High: 5
  - Medium: 3
  - Low: 2

CRITICAL VULNERABILITIES
------------------------

1. SQL Injection in User Authentication
   File: src/auth/login.js:45
   Severity: Critical (CVSS 9.8)

   Vulnerable Code:
   const query = `SELECT * FROM users WHERE username='${username}'`

   Remediation:
   Use parameterized queries to prevent SQL injection:
   const query = 'SELECT * FROM users WHERE username = ?'
   db.query(query, [username])

2. Hardcoded API Key
   File: config/api.js:12
   Severity: Critical (CVSS 9.1)

   Vulnerable Code:
   const API_KEY = "sk-1234567890abcdef"

   Remediation:
   Move API key to environment variable:
   const API_KEY = process.env.API_KEY

Security Best Practices

Requirements

License

MIT License - See LICENSE file for details

Included Skills

This plugin includes 1 skill definition:

scanning-for-vulnerabilities

|

View skill definition

Vulnerability Scanner

This skill provides automated assistance for vulnerability scanner tasks.

Overview

This skill empowers Claude to automatically scan your codebase for security vulnerabilities. It leverages the vulnerability-scanner plugin to identify potential risks, including code-level flaws, vulnerable dependencies, and insecure configurations.

How It Works

  1. Initiate Scan: The skill activates the vulnerability-scanner plugin based on user input.
  2. Perform Analysis: The plugin scans the codebase, dependencies, and configurations for vulnerabilities, including CVE detection.
  3. Generate Report: The plugin creates a detailed vulnerability report with findings, severity levels, and remediation guidance.

When to Use This Skill

This skill activates when you need to:

Examples

Example 1: Identifying SQL Injection Risks

User request: “Scan my code for SQL injection vulnerabilities.”

The skill will:

  1. Activate the vulnerability-scanner plugin.
  2. Analyze the codebase for potential SQL injection flaws.
  3. Generate a report highlighting any identified SQL injection risks and providing remediation steps.

Example 2: Checking for Vulnerable npm Packages

User request: “Check my project’s npm dependencies for known vulnerabilities.”

The skill will:

  1. Activate the vulner

…(truncated)

Source

View on GitHub

Tags: security securityvulnerabilityscanningcvesast