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
Torito-R2S — Torito React2Shell Scanner & Exploit Tool (CVE-2025-55182 / 66478) | Kitploit
Tools/GitHubGitHub/toritoio/torito-r2s
ReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationPenetration TestingCommand and ControlSubdomain Enumeration
GitHubtoritoio/torito-r2s

Torito-R2S

Torito React2Shell Scanner & Exploit Tool (CVE-2025-55182 / 66478)

View Repository
418 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
Website

Torito React2Shell Scanner & Exploit Tool (CVE-2025-55182 / 66478)

Torito Logo

Detection-first scanner for Next.js RSC targets with optional PoC confirm and exploit/shell modes. Use only on systems you are authorized to test.

Requirements

  • Python 3.9+
  • pip install -r requirements.txt
  • Subfinder binary in PATH for --subfinder (install via Homebrew brew install subfinder or Go: go install github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest; project: https://github.com/projectdiscovery/subfinder)
  • Shodan usage requires pip install shodan (already in requirements) and a key: export SHODAN_API_KEY=... with available query credits

Usage

root@kitploit:~
python3 torito_r2s.py --help

Flags

Examples

Safe probe (single target)

root@kitploit:~
python3 torito_r2s.py -u https://target.com

PoC confirm (side-channel redirect)

root@kitploit:~
python3 torito_r2s.py -u https://target.com --confirm

Exploit with custom command

root@kitploit:~
python3 torito_r2s.py -u https://target.com --exploit-cmd "whoami"

Interactive shell on first hit

root@kitploit:~
python3 torito_r2s.py -u https://target.com --shell

List scan with exports

root@kitploit:~
python3 torito_r2s.py -l hosts.txt -t 40 --confirm --json-out results.json --csv-out results.csv

Shodan-only (needs key and credits)

root@kitploit:~
export SHODAN_API_KEY=your_key
python3 torito_r2s.py --shodan 'http.title:"Next.js"' --shodan-limit 50 --confirm

Subfinder-only

root@kitploit:~
python3 torito_r2s.py --subfinder target.com --confirm

Proxy (Burp/Caido)

root@kitploit:~
python3 torito_r2s.py -u https://target.com --proxy http://127.0.0.1:8080 --confirm

Pipeline via stdin

root@kitploit:~
cat urls.txt | python3 torito_r2s.py --confirm

Output notes

  • Table shows fingerprint (NX/AR), probe, confirm, exploit.
  • Exploit digests are base64-decoded when possible; verbose mode shows previews.
  • JSON/CSV include raw digest and decoded output (if any).

Safety

  • For authorized testing only.
  • Default run is non-destructive probe; exploit executes only with --exploit-cmd or --shell.
Download Tool
FlagDescriptionDefault
-u, --url URLSingle target URL—
-l, --list FILEFile with targets (one per line)—
--subfinder DOMAINRun subfinder for domain and add results—
--shodan QUERYShodan search (needs SHODAN_API_KEY with credits)—
--shodan-limit NMax Shodan results per query100
-t, --threads NConcurrency20
--timeout SECRequest timeout10
--proxy URLHTTP/HTTPS proxy—
--confirmRun redirect-based PoC after probeoff
--exploit-cmd "CMD"Run RCE payload with command—
--shell, -iOpen interactive shell on first exploit success (defaults cmd to id)off
--json-out FILESave JSON results—
--csv-out FILESave CSV results—
-v, --verboseShow decoded outputs/digests in tableoff