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

@voidagency/web-scanner

v0.0.5

Published

Security scanning CLI orchestrating ZAP, Nuclei, and testssl.sh

Readme

VoidSec Scanner

CLI orchestrator that runs 3 mature security tools and generates unified reports.

voidsec scan https://target.com --profile quick

Architecture

voidsec scan https://target.com
    ↓
┌─────────┬─────────┬───────────┐
│   ZAP   │ Nuclei  │ testssl   │
└────┬────┴────┬────┴─────┬─────┘
     └─────────┼──────────┘
               ↓
      Aggregator (dedupe, consolidate)
               ↓
         HTML Report

What It Does

  • Single command runs 3 tools
  • Unified HTML report
  • Noise reduction (filters informational clutter)
  • Consolidates same vuln across multiple URLs
  • Tech detection (Drupal, PHP, nginx versions)
  • Zero CVE maintenance (Nuclei community handles it)

What It Doesn't Do

  • Authenticated scanning
  • Business logic flaw detection
  • Zero-day detection
  • API fuzzing
  • Replace manual pentesting

Scanners

ZAP (Primary)

Docker-based OWASP ZAP baseline scan.

docker run zaproxy/zap-stable zap-baseline.py

Skipped plugins (noise):

| ID | Name | Why Skip | |----|------|----------| | 10109 | Modern Web Application | Just says "this is SPA" | | 10015 | Re-examine Cache-control | Informational | | 10049 | Non-Storable Content | Informational | | 10050 | Retrieved from Cache | Informational | | 10044 | Big Redirect Detected | 99% false positives | | 10027 | Suspicious Comments | Triggers on TODO/FIXME | | 10112 | Session Management Response | Just says "session exists" | | 10017 | Cross-Domain JS | Merged into SRI finding |

Nuclei (Supplementary)

Template-based scanner with 5000+ community templates.

nuclei -u https://target.com -t templates/

Updates:

nuclei -update-templates  # auto-updates community templates

Custom templates (/templates/):

| Template | What It Does | |----------|--------------| | drupal-theme-lockfiles.yaml | Exposed package.json/yarn.lock in themes | | drupal-api-user-detail.yaml | JSON:API user detail exposure | | drupal-file-path-disclosure.yaml | Filename leak in 403 errors | | drupal-dev-files-exposed.yaml | Composer.json/lock exposed | | http-options-enabled.yaml | HTTP OPTIONS method enabled | | nextjs-version-detect.yaml | Next.js version via headless browser |

testssl.sh

SSL/TLS vulnerability scanner.

testssl.sh --jsonfile output.json https://target.com

Skipped: Scanner errors (engine_problem, scanProblem) - our machine issues, not target.

Profiles

| Profile | What It Runs | |---------|--------------| | quick | ZAP baseline + Nuclei (misconfig, exposure) | | standard | + more Nuclei templates | | deep | + fuzzing templates |

Note: SSL/TLS analysis (testssl.sh) is opt-in with --ssl flag.

Output

voidsec scan https://target.com --output report.html

Report includes:

  • Severity summary (Critical/High/Medium/Low/Info)
  • Technology detection
  • Test coverage
  • Findings with reproduce commands
  • Passed security checks

Maintenance

| Component | Maintenance | How | |-----------|-------------|-----| | Nuclei templates | Zero | nuclei -update-templates | | ZAP | Zero | Docker pulls latest | | testssl | Zero | System updates | | Custom templates | Low | Update when Drupal changes | | Filters | Minimal | Quarterly review |

Install

Via npm (recommended)

# Install globally
npm install -g @voidagency/web-scanner

# Or use with npx (no installation)
npx @voidagency/web-scanner scan https://target.com --profile quick

# Setup dependencies (checks brew, installs nuclei, pulls ZAP image)
voidsec setup

From source

# Clone and install
git clone <repo-url>
cd voidsec
npm install
npm run build

# Setup dependencies (checks brew, installs nuclei, pulls ZAP image)
npm run dev -- setup

Requirements:

  • Node.js 18+
  • OrbStack or Docker (for ZAP) - Get OrbStack (recommended, faster & lighter)
  • Homebrew (for installing nuclei)
  • nuclei (auto-installed via setup command)
  • testssl.sh (optional, for SSL/TLS analysis)

Setup Command: The setup command automatically:

  • Checks if Homebrew is installed
  • Checks if Docker/OrbStack is running
  • Installs Nuclei via Homebrew if missing
  • Pulls ZAP Docker image if Docker is available

macOS Note: First run will prompt "Chromium wants to use your keychain" - click Always Allow. This is for Nuclei headless templates (Next.js detection). Only asked once.

Usage

# Quick scan
voidsec scan https://target.com --profile quick

# Nuclei only (fast, no Docker)
voidsec scan https://target.com --profile quick --no-zap

# With SSL/TLS analysis
voidsec scan https://target.com --ssl

# With output
voidsec scan https://target.com --output report.html

# Disable CVE lookup
voidsec scan https://target.com --no-cve

# Test Drupal checks only
voidsec test-drupal https://target.com

Note: If installed from source, use npm run dev -- prefix (e.g., npm run dev -- scan ...)