
This script is a modified version of the original exploit by Daniele Scanu which exploits an unauthenticated SQL injection vulnerability in CMS Made Simple <= 2.2.10 (CVE-2019-9053).
This Python script exploits an unauthenticated SQL injection vulnerability in CMS Made Simple <= 2.2.10 (CVE-2019-9053). The exploit extracts sensitive information such as the salt, username, email, and password of the administrator from the CMS Made Simple database.
This script is a modified version of the original exploit by Daniele Scanu. The following improvements have been made:
Updated to Python 3:
Increased TIME Variable:
Enhanced Error Handling:
Improved Code Readability:
requests librarytermcolor libraryFirst, ensure you have pip installed:
apt install python3-pip
You can install the required libraries using pip:
pip install requests termcolor
git clone https://github.com/Dh4nuJ4/SimpleCTF-UpdatedExploit.git
cd SimpleCTF-UpdatedExploit
python3 updated_46635.py -u <target_url> [-c] [-w <wordlist>]
-u, --url: The base URL of the target CMS Made Simple instance (e.g., http://example.com/cms).-c, --crack: Optional. Attempt to crack the admin password using the provided wordlist.-w, --wordlist: Optional. Path to the wordlist for password cracking.python3 updated_46635.py -u http://example.com/cms
python3 updated_46635.py -u http://example.com/cms -c -w /path/to/wordlist.txt
-c option is provided, it attempts to crack the password using the provided wordlist.This script is for educational purposes only. The author is not responsible for any misuse or damage caused by this script.