npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/vulnerability-scanner

v1.0.0

Published

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

Readme

Vulnerability Scanner Plugin

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

Features

  • Static Application Security Testing (SAST) - Scan source code for vulnerabilities
  • Dependency Scanning - Check third-party packages for known CVEs
  • Configuration Analysis - Review security-sensitive configurations
  • Severity Classification - CVSS-based severity scoring
  • Remediation Guidance - Actionable fix recommendations

Installation

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

Usage

# Scan current directory
/scan

# Or use shortcut
/vuln

What It Scans

Code Vulnerabilities

  • SQL injection risks
  • Cross-site scripting (XSS)
  • Command injection
  • Path traversal
  • Insecure deserialization
  • Hardcoded credentials
  • Weak cryptography
  • Authentication bypasses

Dependencies

  • Known CVEs in npm packages
  • Known CVEs in pip packages
  • Known CVEs in composer packages
  • Outdated packages with security patches
  • Transitive dependency vulnerabilities

Configuration Issues

  • Insecure SSL/TLS settings
  • Weak CORS policies
  • Missing security headers
  • Debug mode in production
  • Exposed admin interfaces

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

  • Run scans regularly (pre-commit, pre-deploy)
  • Address Critical and High severity issues immediately
  • Keep dependencies updated
  • Never commit vulnerability reports to public repositories
  • Validate fixes with follow-up scans
  • Document false positives for future reference

Requirements

  • Read access to codebase
  • Access to package manifest files (package.json, requirements.txt, composer.json)
  • Network access for CVE database lookups (optional)

License

MIT License - See LICENSE file for details