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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2019-9053-port-py3 — CVE-2019-9053。 | Kitploit
工具/GitHubGitHub/del0x3/cve-2019-9053-port-py3
密码破解漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育
GitHubdel0x3/cve-2019-9053-port-py3

CVE-2019-9053-port-py3

CVE-2019-9053。

查看仓库
81年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2019-9053 漏洞利用 - Python 3

这是 CVE-2019-9053 漏洞利用的 Python 3 移植版本,针对 CMS Made Simple (CMSMS) 2.2.10 之前的版本。该漏洞允许通过 News 模块接口进行 SQL 注入。

示例输出

已在 TryHackMe Simple CTF Challenge 上测试。

Exploit Output

描述

该利用程序利用了 CMS Made Simple 的 News 模块中的 SQL 注入漏洞。它可以:

  • 提取 CMS 的 salt
  • 导出管理员用户名
  • 导出管理员邮箱
  • 导出管理员密码哈希
  • 可选使用提供的字典破解密码

快速开始

使用以下命令快速下载并运行:

root@kitploit:~
# Download the exploit
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py

# Download requirements
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt

# Install requirements
pip install -r requirements.txt

# Make exploit executable
chmod +x exploit.py

# Run the exploit
./exploit.py -u http://target.com/cms

使用 wget 的替代方法:

root@kitploit:~
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt
pip install -r requirements.txt
chmod +x exploit.py
./exploit.py -u http://target.com/cms

要求

  • Python 3.6+
  • 所需的包(参见 requirements.txt)

安装

  1. 克隆此仓库:
root@kitploit:~
git clone https://github.com/del0x3/CVE-2019-9053-port-py3.git
cd CVE-2019-9053-port-py3
  1. 安装所需的包:
root@kitploit:~
pip install -r requirements.txt

用法

基本用法:

root@kitploit:~
python3 exploit.py -u http://target.com/cms

启用密码破解:

root@kitploit:~
python3 exploit.py -u http://target.com/cms -c -w /path/to/wordlist.txt

参数

  • -u, --url: 目标基础 URL(必需)
  • -w, --wordlist: 用于密码破解的字典路径
  • -c, --crack: 启用密码破解模式

免责声明

此工具仅用于教育和安全研究目的。未经明确许可,请勿将其用于系统。

致谢

  • 原始漏洞利用程序由 Daniele Scanu 编写
  • Python 3 移植由 Del0x3 完成

许可证

MIT License

下载工具