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

@phoenixaihub/vuln-harvest

v0.1.0

Published

AI-guided vulnerability discovery framework. Agentic harness: hypothesis → PoC → verify → triage.

Downloads

81

Readme

VulnHarvest — AI-Guided Vulnerability Discovery Framework

Problem

Security teams lack open-source tooling to use LLMs for systematic vulnerability discovery in codebases. Mozilla internally proved AI can find 423 Firefox bugs in one month (including 15-year-old UAFs, sandbox escapes, race conditions) using Claude Mythos — but hasn't open-sourced the pipeline. Meanwhile, offense is getting cheaper (AI-assisted vulnerability scanning by attackers), and defenders need the same tooling.

Solution

Open-source agentic harness for AI-guided vulnerability discovery:

  1. Hypothesis Generation — LLM analyzes code patterns, generates vulnerability hypotheses
  2. PoC Creation — Automated proof-of-concept test generation per hypothesis
  3. Verification — Execute PoCs in sandboxed environment, confirm exploitability
  4. Deduplication — Match against known CVEs, filter false positives
  5. Triage — Severity classification (CVSS-like scoring), report generation

Project-agnostic: bring your own codebase, your own model, your own CI.

Market

  • TAM: $15B+ application security testing market (growing 20%+ YoY)
  • Adjacent validated: Snyk ($8.5B valuation), Semgrep (OSS + commercial), CodeQL (GitHub/Microsoft)
  • Gap: None of these use LLMs for hypothesis-driven discovery. They're pattern-matching or static analysis. VulnHarvest is the next generation.
  • Mozilla proof point: 423 bugs in 1 month including bugs that survived decades of fuzzing — validates the approach at scale

Architecture

┌─────────────┐    ┌──────────────┐    ┌─────────────┐
│  Code Ingest │───▶│  Hypothesis  │───▶│  PoC Gen    │
│  (AST/CFG)   │    │  Generator   │    │  Engine     │
└─────────────┘    └──────────────┘    └─────────────┘
                                              │
┌─────────────┐    ┌──────────────┐    ┌──────▼──────┐
│  Reporter   │◀───│  Triage &    │◀───│  Sandbox    │
│  (SARIF)    │    │  Dedup       │    │  Executor   │
└─────────────┘    └──────────────┘    └─────────────┘
  • TypeScript/Node.js CLI
  • SARIF output for CI/CD integration
  • Pluggable LLM backend (OpenAI, Anthropic, local models)
  • Sandboxed execution (Docker-based)
  • CVE database integration

Competitive Landscape

| Tool | Approach | LLM-Guided? | Open Source? | |------|----------|-------------|-------------| | Semgrep | Pattern matching | No | Yes | | CodeQL | Dataflow analysis | No | Partial | | Snyk Code | ML pattern detection | Partial | No | | Mozilla/Mythos | LLM hypothesis | Yes | No (internal) | | VulnHarvest | LLM hypothesis + PoC | Yes | Yes |

Verdict: BUILD

Rationale:

  • Technical moat: Agentic harness with hypothesis→PoC→verify loop is novel in open source
  • Market timing: Mozilla just proved the approach works; no open-source equivalent exists
  • Brand fit: Extends phoenix-assistant security cluster (mcp-security-scanner, agent-security-scanner, etc.)
  • Feasibility: MVP scope is achievable — hypothesis gen + PoC for common vulnerability classes (XSS, SQLi, path traversal, buffer overflow patterns)
  • Converging signals: 3+ independent sources (Mozilla/Mythos 357 HN pts, jefftk.com 367 HN pts, Karpathy supply chain alert, Xeiaso 831 HN pts)

MVP Scope

  1. Code ingestion (AST parsing for JS/TS/Python/C)
  2. Hypothesis generation via LLM (configurable model)
  3. PoC test generation for top 5 vulnerability classes
  4. Basic sandbox execution
  5. SARIF output
  6. CLI interface: vulnharvest scan ./src --model claude-sonnet