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

@aquibk/reconix

v1.1.0

Published

Reconnaissance Intelligence Engine | Leak Scanner | Threat Intelligence Suite

Readme

Reconix

Reconnaissance Intelligence Engine | Leak Scanner | Threat Intelligence Suite

Node.js Version License

🔍 Deep Exposure Intelligence • ⚡ High-Signal Recon Engine


⚠️ LEGAL DISCLAIMER

Reconix is designed EXCLUSIVELY for authorized security testing, bug bounty programs, and defensive research.

  • DO scan targets you own
  • DO scan targets with explicit written permission
  • DO use in CTF competitions
  • DO NOT scan systems without authorization
  • DO NOT use for malicious purposes

Unauthorized scanning is illegal and punishable under computer fraud laws.
Read the full disclaimer in DISCLAIMER.md.


🔥 What Makes Reconix Powerful

Unlike basic scanners that just regex-match and dump findings, Reconix:

  • Validates secrets live — Calls actual APIs (GitHub, Stripe, OpenAI, Supabase, SendGrid, Anthropic, HuggingFace, Linear) to confirm if keys are VALID, INVALID, EXPIRED, or LONG-LIVED — no more guessing if a key actually works

  • Builds exploit chains — Automatically connects related findings into actionable attack paths like "JWT + Supabase + API endpoints → Unauthorized data access" or "Validated secret + Admin panel → Privilege escalation"

  • Filters false positives with 10-layer analysis — Ignores React internals, CSS classes, documentation URLs, placeholders, and minified junk that other tools falsely report as secrets

  • Reconstructs source maps — Recovers original source code from .map files and inline source maps, then scans the reconstructed code for secrets hidden in minified bundles

  • Self-healing browser — Automatically detects and restarts crashed Puppeteer instances mid-scan without losing progress

  • Extracts client intelligence — Aggregates all JavaScript to find API endpoints (user/admin/internal), environment variables (NEXT_PUBLIC_*, REACT_APP_*), third-party services (Supabase, Stripe, Firebase, Clerk), and feature flags

  • Priority-driven crawling — Intelligently scores URLs (JS files, APIs, source maps first) to find high-value targets before wasting time on static assets

  • Live JWT introspection — Decodes JWTs to reveal issuer, role, and expiry — flags LONG-LIVED (1+ year) and NO EXPIRY tokens as security concerns

  • Supabase service_role detection — Identifies when a JWT has service_role privileges, which bypasses all Row Level Security (RLS) — critical database compromise path

  • Firebase Realtime DB testing — Detects Firebase credentials and tests if /.json endpoint allows unauthenticated database dumps

  • GraphQL introspection detection — Automatically probes /graphql endpoints to check if schema introspection is enabled (information leak)

  • CORS misconfiguration scanning — Checks API endpoints for wildcard (*) or reflective Access-Control-Allow-Origin headers

  • WordPress user enumeration — Detects when /wp-json/wp/v2/users exposes user IDs and names

  • Next.js environment variable leakage — Scans /_next/static/chunks/ for embedded process.env references in client bundles

  • Archive digging — Fetches historical URLs from Wayback Machine and scans archived content for secrets that were removed from the live site

  • Proxy failover — Automatically falls back to direct connection after 3 consecutive proxy failures, so scans don't die

  • Resumable scans — Saves state every 10 resources and can resume from .reconix-state.json if interrupted

  • Multi-format reporting — Generates beautiful HTML reports, structured JSON exports, and plaintext discovered_api_keys.txt for quick reference

  • 680+ technology fingerprints — Detects frameworks, hosting providers, CDNs, analytics, payment processors, auth systems, and UI libraries from headers, HTML, JS, cookies, TLS certs, and DNS

  • 200+ real-world secret detection patterns — Covers API keys, tokens, private keys, OAuth secrets, database credentials, CI/CD tokens, and webhook URLs across major platforms with high-confidence matching

  • Browser network capture — When --js is enabled, captures all outgoing network requests to fingerprint additional services and APIs

  • Rate limit awareness — Detects 429 responses and Retry-After headers, adjusts accordingly without crashing


📦 Installation

# Global installation
npm install -g @aquibk/reconix

# Or run directly
npx reconix target.com

# Verify everything works
reconix --self-test

Requirements

  • Node.js 18 or higher
  • Internet access
  • Chrome/Chromium (installed automatically for --js mode)

🚀 Quick Start

# Basic scan (low footprint)
reconix example.com

# Full power (maximum findings)
reconix example.com --js --aggressive --deep --only-critical

# Bug bounty mode (balanced)
reconix target.com --js --deep --historical --delay=500 --output=report.json

# Stealth mode (avoid detection)
reconix target.com --delay=2000 --jitter=1000 --threads=5 --proxy=socks5://127.0.0.1:9050

📖 Full Command Reference

Basic Usage

reconix <url> [options]
reconix scan <url> [options]

🎨 Output & Reporting

| Flag | Description | Default | | ----------------- | ----------------------- | ------- | | --output=<file> | Save full JSON report | None | | --html=<file> | Generate HTML report | None |

reconix example.com --output=scan.json --html=report.html

🔍 Discovery & Reconnaissance

| Flag | Description | Default | | ----------------- | --------------------------- | ------- | | --no-subdomains | Disable subdomain discovery | - | | --historical | Fetch archived URLs | false | | --deep | Increase crawl depth | false |

reconix example.com --historical --deep

🧠 Scanning Engine

| Flag | Description | Default | | --------------------- | --------------------------- | ------- | | --threads=<n> | Concurrent requests (1–100) | 20 | | --delay=<ms> | Base delay between requests | 500 | | --jitter=<ms> | Random delay variation | 300 | | --max-bytes=<bytes> | Max download size per file | 4000000 | | --resume | Resume previous scan | false |

# Fast but risky
reconix example.com --threads=50 --delay=100 --jitter=50

# Polite crawling
reconix example.com --threads=10 --delay=2000 --jitter=1000

🔥 Advanced Features

  • --no-js → Disable headless browser (Puppeteer)
  • --aggressive → Deep full-scope scan
  • --proxy=<host:port> → Proxy support
  • --auth=<user:pass> → Authentication (Basic or Bearer)
  • --cookie=<string> → Custom cookies
  • --user-agent=<string> → Custom user-agent
# Authenticated scan
reconix api.example.com --auth="Bearer:sk_live_xxx" --js

# Proxy usage
reconix example.com --proxy="http://user:pass@proxy:8080" --delay=1000

🎯 Finding Filters

| Flag | Description | Default | | ------------------ | ---------------------------- | ------- | | --only-critical | Show only critical findings | false | | --no-low | Hide low-confidence findings | false | | --include-medium | Include medium findings | true | | --no-medium | Exclude medium findings | - |

reconix example.com --only-critical --no-low

🎯 Use Cases

1. Bug Bounty (Balanced)

reconix target.com --deep --historical --threads=25 --delay=500 --output=bounty.json --html=report.html

2. Maximum Findings (Most Powerful)

reconix target.com --aggressive --deep --historical --threads=50 --delay=150 --jitter=50 --only-critical --output=full.json --html=full.html

3. Stealth Mode

reconix target.com --threads=5 --delay=2000 --jitter=1500 --no-subdomains --proxy=socks5://127.0.0.1:9050

4. Fast Triage

reconix target.com --threads=30 --delay=200 --no-js --no-subdomains --only-critical

🛡️ Rate Limiting & WAF Avoidance

| Target Type | Threads | Delay | Jitter | JS | | ----------- | ------- | --------- | ------ | -- | | Production | 5–10 | 2000–3000 | 1000 | ❌ | | Staging | 15–20 | 800–1200 | 500 | ✅ | | Bug Bounty | 20–30 | 400–600 | 200 | ✅ | | CTF / Lab | 50–100 | 0–100 | 0 | ✅ |


📊 What Reconix Reports

Technology Stack

  • Confirmed (90%+)
  • Likely (70–89%)
  • Theoretical (<70%)

Secrets & Credentials

  • VALID
  • INVALID
  • LONG-LIVED
  • NO EXPIRY
  • UNVERIFIED

Client Intelligence

  • API endpoints
  • Environment variables
  • External services
  • Authentication mechanisms

Exploit Chains

  • JWT + API → Unauthorized access
  • API key → Third-party abuse
  • Firebase credentials → Database exposure

🧪 Self-Test Mode

reconix --self-test

💡 Pro Tips

# Phase 1: Quick recon
reconix target.com --only-critical

# Phase 2: Deep analysis
reconix target.com --deep --delay=1000

# Phase 3: Aggressive scan
reconix target.com --aggressive --deep --only-critical

🚨 Common Issues & Solutions

| Issue | Solution | | ------------------- | ------------------------------ | | Browser timeout | Reinstall Puppeteer | | Too many open files | Reduce threads | | Proxy failed | Check proxy URL | | Rate limited (429) | Increase delay & jitter | | No findings | Use --js --deep --historical |


📁 Output Files

| File | Description | | ------------------------- | ----------------- | | discovered_api_keys.txt | All secrets found | | *.json | Full scan report | | *.html | Visual report | | .reconix-state.json | Resume state |


🤝 Contributing

Issues and pull requests are welcome.

reconix --self-test

📄 License

See LICENSE.txt


⚠️ USE RESPONSIBLY. ONLY ON AUTHORIZED TARGETS. ⚠️