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

@hover-dev/pentest

v0.1.0

Published

Hover plugin: AI-driven authorized pentest of your own dev app — sweeps for access-control issues and produces a findings report (no spec). The discovery half; confirmed findings crystallize via @hover-dev/security.

Readme

@hover-dev/pentest

The discovery half of Hover security — the red "pentest mode". Where @hover-dev/security crystallizes confirmed access-control findings into a CI .security.spec.ts (the orange "security mode", business / authorization), pentest hunts vulnerabilities + attack classes (SQLi, XSS, SSTI, SSRF, path-traversal, XXE, deserialization, RCE, open-redirect, CORS, JWT, …) and turns a session's recorded checks into a findings report.

  • Authorized, own-app only. Scoped to the dev origin you're building — no third-party targets, no DoS, no detection-evasion. Entering red mode is the authorization.
  • In-band confirmation. Findings are confirmed by timing, body-diff, or reflected internal content — not external out-of-band callbacks.
  • No secrets in the report. Cookies / tokens / PII are stripped; request bodies/headers are referenced, never dumped; URLs are sanitized.
  • Says what it didn't test. Every report carries a "Not tested" section so it's never mistaken for full coverage.

Coverage

Probes come from the shared @hover-dev/probe-engine seed set (built-ins + your .hover/rules/). Built-in offensive seeds today:

| Class | Built-in seed | How it's confirmed (in-band) | |---|---|---| | SQL injection | sqli-error-boolean | error fragment / boolean body-diff / SLEEP delay | | Reflected XSS | xss-reflected | canary reflects unencoded in an executable context | | SSTI | ssti-template-injection | {{7*7}} → 49 in the response | | SSRF | ssrf-url-param | internal/metadata content or a timing delta | | Open redirect | open-redirect | 3xx Location to an external origin | | Path traversal | path-traversal | file contents (e.g. /etc/passwd) in the response | | GraphQL | graphql-introspection | __schema returned (introspection left on) |

Plus the authz seeds shared with security mode (IDOR, BFLA, mass-assignment, auth-bypass — the latter also covers JWT tampering / alg:none).

Deliberately out of scope (so the report's honesty holds): recon / OSINT / subdomain enumeration (we test the app you're building, not its attack surface), cloud-misconfig, and anything that can only be confirmed out-of-band (Collaborator-style callbacks) — those are reported as suspected, never confirmed. CORS and JWT live as cross-flow / header checks rather than per-flow seeds for now. Growing the seed set is the main expansion path — add to .hover/rules/ or the engine built-ins.

Standing on the shoulders of giants

Pentest mode's offensive web-vulnerability methodology — the per-class detection signals, exploitation techniques, the validation gate, the report shape — is adapted (with thanks) from Claude-BugHunter by Sachin Sharma (MIT):

https://github.com/elementalsouls/Claude-BugHunter

We rewrote the material into Hover's probe-seed + report format and scoped it to authorized own-app testing (dropping the bug-bounty / external-target / OOB and enterprise-appliance parts). Credit and gratitude to that project.

License

Apache-2.0 © Hyperyond Studio