Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Torito-R2S — Torito React2Shell 扫描器与漏洞利用工具 (CVE-2025-55182 / 66478) | Kitploit
工具/GitHubGitHub/toritoio/torito-r2s
侦察漏洞扫描器漏洞利用Web应用程序漏洞利用渗透测试命令与控制子域名枚举
GitHubtoritoio/torito-r2s

Torito-R2S

Torito React2Shell 扫描器与漏洞利用工具 (CVE-2025-55182 / 66478)

查看仓库
418个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
网站

Torito React2Shell 扫描器与利用工具 (CVE-2025-55182 / 66478)

Torito 标志

面向 Next.js RSC 目标的检测优先扫描器,可选 PoC 确认与利用/Shell 模式。仅可用于你获授权测试的系统。

要求

  • Python 3.9+
  • pip install -r requirements.txt
  • 用于 --subfinder 的 Subfinder 二进制文件需位于 PATH 中(可通过 Homebrew brew install subfinder 或 Go 安装:go install github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest;项目:https://github.com/projectdiscovery/subfinder)
  • 使用 Shodan 需要 pip install shodan(已包含在 requirements 中)以及一个密钥:export SHODAN_API_KEY=...,并拥有可用的查询额度

用法

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

参数

示例

安全探测(单个目标)

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

PoC 确认(侧信道重定向)

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

使用自定义命令进行利用

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

首次命中后打开交互式 Shell

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

列表扫描并导出

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

仅 Shodan(需要密钥和额度)

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

仅 Subfinder

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

代理(Burp/Caido)

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

通过标准输入管道

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

输出说明

  • 表格显示指纹(NX/AR)、探测、确认、利用状态。
  • 利用摘要尽可能进行 base64 解码;详细模式显示预览。
  • JSON/CSV 包含原始摘要和解码后的输出(如果有)。

安全

  • 仅供授权测试使用。
  • 默认运行为非破坏性探测;仅在指定 --exploit-cmd 或 --shell 时执行利用。
下载工具
FlagDescriptionDefault
-u, --url URL单个目标 URL—
-l, --list FILE包含目标的文件(每行一个)—
--subfinder DOMAIN对域名运行 subfinder 并添加结果—
--shodan QUERYShodan 搜索(需要具有额度的 SHODAN_API_KEY)—
--shodan-limit N每次查询的最大 Shodan 结果数100
-t, --threads N并发数20
--timeout SEC请求超时10
--proxy URLHTTP/HTTPS 代理—
--confirm探测后运行基于重定向的 PoCoff
--exploit-cmd "CMD"使用指定命令运行 RCE 载荷—
--shell, -i在首次利用成功后打开交互式 Shell(默认命令为 id)off
--json-out FILE保存 JSON 结果—
--csv-out FILE保存 CSV 结果—
-v, --verbose在表格中显示解码后的输出/摘要off