Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-55182-Auto-Scanner — CVE-2025-55182 Auto Scanner - Improved Version For authorized CTF/testing purposes only | Kitploit
Tools/GitHubGitHub/kaxm23/cve-2025-55182-auto-scanner
Vulnerability ScannersPayload GenerationExploitationWeb Application ExploitationWAF BypassPenetration Testing
GitHubkaxm23/cve-2025-55182-auto-scanner

CVE-2025-55182-Auto-Scanner

CVE-2025-55182 Auto Scanner - Improved Version For authorized CTF/testing purposes only

View Repository
45 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
root@kitploit:~

CVE-2025-55182 Scanner is a high-performance tool for detecting vulnerable Next.js Server Action endpoints.  
It uses multi-threaded scanning, confidence-based detection, and multiple response indicators to identify potential Remote Code Execution (RCE) vulnerabilities.

### Features

- High-speed concurrent scanning
- Confidence-based vulnerability scoring
- WAF bypass payload generation
- Header & response pattern analysis
- Real-time progress tracking
- Automatic saving of vulnerable targets

---

## How It Works

The scanner follows these steps:

1. Load target URLs from file
2. Generate specially crafted payload
3. Send HTTP request to target
4. Analyze response headers and body
5. Calculate vulnerability confidence score
6. Mark target as vulnerable if score ≥ 40%
7. Save vulnerable targets to file

Detection is based on:

- Next.js specific headers
- React Server Component responses
- Error message patterns
- HTTP 500 status codes
- Payload reflection in response
- Response behavior anomalies

---

## How To Run

### 1. Install Dependencies

```bash
pip3 install -r requirements.txt

2. Create Targets File

root@kitploit:~
https://example.com
https://target.com
http://127.0.0.1:3000

3. Run Scanner

Basic scan:

root@kitploit:~
python3 scanner.py -l targets.txt

With threads:

root@kitploit:~
python3 scanner.py -l targets.txt -t 30

Verbose mode:

root@kitploit:~
python3 scanner.py -l targets.txt -v

Fast scan:

root@kitploit:~
python3 scanner.py -l targets.txt -t 50 --timeout 5

Output

Vulnerable targets will be saved to:

root@kitploit:~
vulnerable.txt

Example output:

root@kitploit:~
[VULN] https://target.com - Confidence: 85%
[VULN] https://app.vercel.app - Confidence: 72%
root@kitploit:~
Download Tool