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-32640 — Python POC for CVE-2024-32640 Mura CMS SQLi | Kitploit
Tools/GitHubGitHub/pizza-power/cve-2024-32640
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubpizza-power/cve-2024-32640

CVE-2024-32640

Python POC for CVE-2024-32640 Mura CMS SQLi

View Repository
11 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-32640 MySQL Blind SQL Injection Proof of Concept

This Python script demonstrates a time-based blind SQL injection exploit for MySQL databases, specifically designed for CVE-2024-32640. It can be used to verify vulnerability in a target URL, and if the vulnerability exists, extract information such as the current database name or the current MySQL user.

Features

  • Vulnerability Detection: Detects SQL injection vulnerability via time-based SLEEP delays.
  • Information Extraction: Dumps specific information (e.g., database name or user) character-by-character using binary search to optimize extraction speed.
  • Proxy Support: Optional support for running requests through a local proxy (e.g., Burp Suite on localhost:8080).

Requirements

  • Python 3.x
  • Requests Library: Install using pip install requests

Usage

Arguments

  • -u, --url: Target URL for single-target testing.
  • -f, --file: Path to a file containing a list of URLs to test.
  • -p, --proxy: Enable proxy mode (default localhost:8080) to route traffic through a proxy.
  • --dump: Specify information to extract:
    • dbname: Extract the name of the current database.
    • user: Extract the current MySQL user.

Examples

Single Target Detection

To detect if a URL is vulnerable:

root@kitploit:~
python3 CVE-2024-32640.py -u "https://example.com" --dump user

Extract Database Name for a List of URLs

To extract the database name from multiple URLs:

root@kitploit:~
python3 CVE-2024-32640.py -f urls.txt --dump dbname

Enable Proxy for Traffic Analysis

Route traffic through localhost:8080 (e.g., for use with Burp Suite):

root@kitploit:~
python3 CVE-2024-32640.py -u "https://example.com" --dump user -p
Download Tool