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
rust-cve-2025-55182-scanner — powerfull rust cve-2025-55182-scanner used for ctf & ethical purpose only | Kitploit
Tools/GitHubGitHub/kaxm23/rust-cve-2025-55182-scanner
ReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationCTFPenetration Testing
GitHubkaxm23/rust-cve-2025-55182-scanner

rust-cve-2025-55182-scanner

powerfull rust cve-2025-55182-scanner used for ctf & ethical purpose only

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
4 months agoNot yet reviewed

CVE-2025-55182 Scanner (Rust)

A high-performance, concurrent vulnerability scanner written in Rust for detecting CVE-2025-55182 (Next.js Server Actions RCE) across multiple targets.


🚀 Features

  • ⚡ High-performance Rust implementation
  • 🧵 Multi-threaded scanning engine
  • ⏱ Adjustable timeout & retry system
  • 📄 Supports bulk target scanning
  • 📊 JSON + text output reports
  • 🧠 Fast and lightweight execution
  • 🔌 Optional proxy support
  • 🛡 Designed for security research

📦 Installation

1. Clone the repository

root@kitploit:~
git clone https://github.com/kaxm23/rust-cve-2025-55182-scanner.git
cd rust-cve-2025-55182-scanner

2. Build (Release Mode Recommended)

root@kitploit:~
cargo build --release

3. Verify Binary

root@kitploit:~
ls target/release/

You should see:

root@kitploit:~
cve-2025-55182-scanner

🚀 Usage

Basic Scan

root@kitploit:~
./target/release/cve-2025-55182-scanner -l targets.txt

Verbose Mode

root@kitploit:~
./target/release/cve-2025-55182-scanner -l targets.txt -v

High Performance Scan

root@kitploit:~
./target/release/cve-2025-55182-scanner -l targets.txt -t 100 --timeout 5

Output to File

root@kitploit:~
./target/release/cve-2025-55182-scanner -l targets.txt -o results.txt

Proxy Support (Optional)

root@kitploit:~
./target/release/cve-2025-55182-scanner -l targets.txt --proxy http://127.0.0.1:8080

📂 Project Structure

root@kitploit:~
rust_version/
├── src/
│   └── main.rs
├── target/
│   └── release/
│       └── cve-2025-55182-scanner
├── targets.txt
├── vulnerable_*.txt
├── scan_results_*.json
└── README.md

📊 Output Format

Vulnerable Targets

root@kitploit:~
vulnerable_example.txt

JSON Report

root@kitploit:~
[
  {
    "url": "https://target.com",
    "vulnerable": true,
    "confidence": 92
  }
]

⚡ Performance Tuning (Linux)

Increase system limits for heavy scans:

root@kitploit:~
ulimit -n 65535

Optional TCP tuning:

root@kitploit:~
sudo sysctl -w net.ipv4.tcp_fin_timeout=30
sudo sysctl -w net.ipv4.tcp_tw_reuse=1

🧪 Example Workflow

root@kitploit:~
# Step 1: Prepare targets
echo "https://example.com" > targets.txt

# Step 2: Run scan
./target/release/cve-2025-55182-scanner -l targets.txt -v

# Step 3: View results
cat vulnerable_*.txt

📈 Advanced Usage

Continuous Scanning

root@kitploit:~
while true; do
  ./target/release/cve-2025-55182-scanner -l targets.txt
  sleep 3600
done

Fast Mass Scan

root@kitploit:~
./target/release/cve-2025-55182-scanner \
-l targets.txt \
-t 200 \
--timeout 3 \
--retries 1

🛠 Troubleshooting

Permission Denied

root@kitploit:~
chmod +x target/release/cve-2025-55182-scanner

Rebuild Project

root@kitploit:~
cargo clean && cargo build --release

Too Many Open Files

root@kitploit:~
ulimit -n 65535

📌 Requirements

  • Rust 1.70+
  • Linux / macOS / WSL
  • Stable internet connection
  • targets.txt file

📜 Disclaimer

This tool is provided for:

  • Security research
  • Educational purposes
  • Authorized penetration testing
  • CTF challenges

The author is not responsible for misuse.


⭐ Star History

If you find this project useful, consider giving it a star ⭐


Download Tool