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

pwnkit-cli

v0.5.0

Published

AI-powered agentic security scanner. Scan endpoints, audit packages, review source code. Autonomous agents discover, attack, verify, and report.

Downloads

2,846

Readme


Autonomous AI agents that pentest web apps, LLM endpoints, npm packages, and source code. The agent gets a bash tool and acts like a real pentester — writing curl commands, Python exploit scripts, and chaining vulnerabilities. Every finding is independently re-exploited by a blind verify agent to kill false positives.

npx pwnkit-cli

Quick Start

# Pentest a web app
npx pwnkit-cli scan --target https://example.com --mode web

# Scan an LLM endpoint
npx pwnkit-cli scan --target https://your-app.com/api/chat

# Audit an npm package
npx pwnkit-cli audit lodash

# Review source code
npx pwnkit-cli review ./my-app

# Auto-detect — just give it a target
npx pwnkit-cli https://example.com
npx pwnkit-cli express
npx pwnkit-cli ./my-repo

See the documentation for configuration, runtime modes, and CI/CD setup.

How It Works

The agent gets 3 tools: bash, save_finding, done. It runs curl, writes Python scripts, chains exploits — the same way a human pentester works. No templates, no static rules.

  Research Agent              Blind Verify Agent           Report
  discover + attack + PoC --> gets ONLY PoC + path    --> SARIF / JSON / MD
                              no reasoning, no bias       only confirmed findings
                              can't reproduce? killed

The blind verification is the differentiator. The verify agent can't be biased by the research agent's reasoning.

Benchmark

XBOW (traditional web vulnerabilities)

Tested against the XBOW benchmark — 104 Docker CTF challenges covering SQLi, IDOR, SSTI, SSRF, file upload, deserialization, auth bypass, and more.

35 flags extracted across IDOR, SQLi, blind SQLi, SSTI, RCE, SSRF, LFI, XXE, file upload, deserialization, auth bypass, business logic, and cookie manipulation.

| Tool | Score | Approach | |------|-------|----------| | Shannon | 96.15% | White-box, source-aware | | KinoSec | 92.3% | Black-box, proprietary | | XBOW | 85% | Purpose-built | | Cyber-AutoAgent | 84.62% | Open-source, meta-agent | | pwnkit | testing | Open-source, shell-first |

AI/LLM security

10 custom challenges covering prompt injection, jailbreaks, system prompt extraction, PII leakage, encoding bypass, multi-turn escalation, MCP SSRF.

100% (10/10) — all flags extracted, zero false positives.

pnpm bench --agentic    # AI/LLM benchmark

See benchmark details.

GitHub Action

- uses: peaktwilight/pwnkit@main
  with:
    mode: review
    path: .
    format: sarif
  env:
    OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}

Built By

Created by a security researcher with 7 published CVEs. pwnkit exists because modern attack surfaces require agents that adapt, not static rules that don't.

Contributing

git clone https://github.com/peaktwilight/pwnkit.git
cd pwnkit && pnpm install && pnpm test

See CONTRIBUTING.md for guidelines.


Built by Peak Twilight -- also building FoxGuard, vibecheck, unfuck, whatdiditdo

License

Apache 2.0