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

shieldnet

v0.3.2

Published

AI Security Scanner for AI agents, MCP servers, and web applications

Downloads

782

Readme

🛡 ShieldNet

npm version License: MIT Node.js Zero Dependencies GitHub Action

AI Security Scanner — find vulnerabilities before attackers do. Scan web apps, APIs, MCP servers, and AI agents with 26 attack modules and 600+ payloads.

Zero dependencies. Pure Node.js. 12,000+ lines of security tooling.

🌐 Live Demo: scan.bughunt.tech


🚀 Quick Start

# Install globally
npm install -g shieldnet

# Scan a URL
shieldnet https://your-app.com

# Scan with Red Team (active attacks)
shieldnet https://your-app.com --pentest

# Scan a GitHub repo
shieldnet --github https://github.com/owner/repo

✨ What Makes ShieldNet Different

| Feature | ShieldNet | Snyk | OWASP ZAP | Nikto | |---------|-----------|------|-----------|-------| | Zero dependencies | ✅ | ❌ 200+ | ❌ Java | ❌ Perl | | AI agent scanning | ✅ | ❌ | ❌ | ❌ | | Red Team engine | ✅ 26 modules | ❌ | ✅ | ❌ | | Live attack replay | ✅ | ❌ | ❌ | ❌ | | Industry benchmarks | ✅ | ❌ | ❌ | ❌ | | Auto-fix code | ✅ | ✅ | ❌ | ❌ | | Single binary | ✅ npm | ❌ | ❌ | ❌ |

🔍 Features

Passive Scanner (25+ checks)

  • Port scanning — top 50 ports with service detection
  • Security headers — CSP, HSTS, X-Frame-Options, etc.
  • CORS — misconfiguration detection
  • Secrets — 42 patterns (API keys, AWS, JWT, etc.)
  • Dependencies — OSV.dev CVE database lookup
  • SSL/TLS — certificate validation
  • Tech fingerprinting — framework/server detection + known CVEs
  • Rate limiting — detection & bypass testing

⚔️ Red Team Engine (26 attack modules)

  • SQL Injection (52 payloads)
  • Cross-Site Scripting (81 payloads)
  • SSRF (35 payloads)
  • Path Traversal (21 payloads)
  • Command Injection (22 payloads)
  • Authentication Bypass
  • CORS Exploitation
  • Open Redirect
  • IDOR
  • Rate Limit Bypass
  • Default Credentials (31 combos)
  • JWT Attacks (15 payloads)

📊 Reports

  • A-F Grading with score (0-100)
  • Industry benchmarks — "Better than X% of scanned sites"
  • Hacker's View — narrative of how an attacker would exploit findings
  • Live Attack Replay — animated terminal showing the attack
  • Auto-fix suggestions — ready-to-paste code for nginx/express/apache
  • 5 formats — HTML, PDF, Executive Summary, Technical, Pentest

📦 API

# URL scan
curl -X POST https://scan.bughunt.tech/scan/url \
  -H "Content-Type: application/json" \
  -d '{"target": "https://example.com"}'

# GitHub repo scan
curl -X POST https://scan.bughunt.tech/scan/github \
  -H "Content-Type: application/json" \
  -d '{"repo": "https://github.com/owner/repo"}'

# Code analysis
curl -X POST https://scan.bughunt.tech/scan/code \
  -H "Content-Type: application/json" \
  -d '{"code": "eval(req.query.cmd)"}'

# Red Team pentest
curl -X POST https://scan.bughunt.tech/pentest \
  -H "Content-Type: application/json" \
  -d '{"target": "https://example.com"}'

⚙️ GitHub Action

name: Security Scan
on: [push, pull_request]

jobs:
  security:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: hhhashexe/shieldnet-action@v1
        with:
          target: 'https://your-app.com'
          fail-grade: 'D'
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

🔌 Integrations

  • GitHub Action — scan on every push
  • Chrome Extension — scan any page with one click
  • VS Code Extension — scan from your editor
  • Slack Bot/shieldnet scan url
  • Discord Bot!scan url
  • n8n Workflow — visual automation
  • Zapier — webhook integration
  • Dockerdocker run shieldnet
  • Python Clientpip install shieldnet

🐳 Docker

docker build -t shieldnet .
docker run -p 3853:3853 shieldnet

🏗 Self-Hosted

git clone https://github.com/hhhashexe/shieldnet.git
cd shieldnet
node src/server.js
# → http://localhost:3853

No npm install needed. Zero dependencies.

📜 License

MIT © 2026 Hash

🔗 Links