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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2024-46987 — CVE-2024-46987 - Camaleon CMS LFI Exploit | Kitploit
工具/GitHubGitHub/rival420/cve-2024-46987
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration TestingLearning & Education
GitHubrival420/cve-2024-46987

CVE-2024-46987

CVE-2024-46987 - Camaleon CMS LFI Exploit

查看仓库
6个月前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2024-46987 - Camaleon CMS 本地文件包含

Camaleon CMS 的已验证本地文件包含(LFI)利用工具。

漏洞

Camaleon CMS 容易受到通过 /admin/media/download_private_file 端点进行的已验证 LFI 攻击。file 参数未正确清理,允许路径遍历,从而读取服务器上的任意文件。

受影响版本

  • Camaleon CMS < 2.8.2

环境要求

root@kitploit:~
pip install requests

使用方法

root@kitploit:~
# Print file to terminal (default)
python3 exploit.py -u http://example.com -f /etc/passwd -t "auth_token"

# Save to file
python3 exploit.py -u http://example.com -f /etc/passwd -t "auth_token" -o passwd.txt

参数

Parameter

示例

root@kitploit:~
# Read passwd file
python3 exploit.py -u https://example.com -f /etc/passwd -t "auth_token"

# Read SSH keys
python3 exploit.py -u https://example.com -f /home/user/.ssh/id_rsa -t "auth_token" -o id_rsa

# Read environment variables
python3 exploit.py -u https://example.com -f /proc/self/environ -t "auth_token"

# Read application config
python3 exploit.py -u https://example.com -f /var/www/html/config/database.yml -t "auth_token"

免责声明

此工具仅用于授权的安全测试和教育目的。仅在对您拥有明确测试权限的系统上使用。

参考

  • CVE-2024-46987
  • Camaleon CMS
下载工具
Description
-u, --url目标URL
-f, --file要读取的文件(例如 /etc/passwd)
-t, --tokenauth_token cookie 值
-o, --output输出文件名(可选,未设置则打印到终端)