| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
JS-powered crawler for hidden endpoints & internal subdomains
SubProbe is a powerful JavaScript-aware web crawler designed for security researchers and penetration testers. It discovers hidden endpoints, APIs, and subdomains by analyzing JavaScript files within web applications — revealing potential attack surfaces that traditional crawlers and subdomain enumeration tools miss.
# Clone the repository
git clone https://github.com/devploit/SubProbe.git
cd SubProbe
npm install
# Make it executable
npm linkAfter running the above commands, you can use subprobe directly from your terminal.
| Option | Description |
|---|---|
| --depth <number> | Recursive scan depth for internal links (default 0) |
| --filter-status <codes> | Filter by status codes. Supports exact (200), ranges (400-410), and groups (4xx) |
| -o, --out <file> | Export results to JSON, CSV, or plain text (determined by file extension) |
| --probe | Check if endpoints respond (via HTTP status codes) |
| --wayback | Include Wayback Machine results |
| --silent | Only show discovered endpoints without progress information |
| --no-color | Disable colored output |
Running subprobe https://example.com --probe --wayback might produce output like this:
🚀 Starting SubProbe on https://example.com
[12:34:56] 🕷️ Starting crawl (depth: 0)
[12:34:57] 🎯 Crawling depth 0 (1 URLs)
[12:35:01] 📂 Collecting from robots.txt & sitemap.xml
[12:35:05] 🕚 Collecting from Wayback...
[12:35:12] 🔌 Probing 42 endpoints...
✅ Analysis complete - Summary:
- URLs analyzed: 1
- JS files analyzed: 3/3
- Endpoints found: 42
[12:35:30] 🔍 Found 42 endpoints:
🟩 https://example.com/api/v1/users ✅ [200]
🟩 https://example.com/api/v1/products ✅ [200]
🟩 https://example.com/api/v1/cart ✅ [200]
🟩 https://example.com/api/v1/checkout 🔒 [401]
🟦 https://api.example.com/v2/products ✅ [200]
🟥 https://cdn.example.net/assets/main.js ✅ [200]
🟥 https://analytics.example-tracker.com/collect ❌ [404]
🕓 https://example.com/legacy/api/users ❌ [404]
🕓 https://example.com/beta/graphql ✅ [200]
🗺️ https://example.com/sitemap/products.xml ✅ [200]
🤖 https://example.com/admin/login.php ❌ [404]
The output shows different types of endpoints with their status:
Status codes are shown when using --probe:
SubProbe uses a multi-stage approach to discover hidden endpoints:
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by devploit
| Back | FazBrowse Home | New Git URL |