
Python POC for CVE-2024-32640 Mura CMS SQLi
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.
SLEEP delays.pip install requests-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.To detect if a URL is vulnerable:
python3 CVE-2024-32640.py -u "https://example.com" --dump user
To extract the database name from multiple URLs:
python3 CVE-2024-32640.py -f urls.txt --dump dbname
Route traffic through localhost:8080 (e.g., for use with Burp Suite):
python3 CVE-2024-32640.py -u "https://example.com" --dump user -p