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-2019-9053-port-py3 — CVE-2019-9053. | Kitploit
Tools/GitHubGitHub/del0x3/cve-2019-9053-port-py3
Password CrackingVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubdel0x3/cve-2019-9053-port-py3

CVE-2019-9053-port-py3

CVE-2019-9053.

View Repository
81 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-2019-9053 Exploit - Python 3

This is a Python 3 port of the CVE-2019-9053 exploit, which targets CMS Made Simple (CMSMS) versions before 2.2.10. The vulnerability allows for SQL injection through the News module interface.

Example Output

Tested on the TryHackMe Simple CTF Challenge.

Exploit Output

Description

The exploit takes advantage of a SQL injection vulnerability in the CMS Made Simple News module. It can:

  • Extract the CMS salt
  • Dump admin username
  • Dump admin email
  • Dump admin password hash
  • Optionally crack the password using a provided wordlist

Quick Start

Download and run quickly using these commands:

root@kitploit:~
# Download the exploit
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py

# Download requirements
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt

# Install requirements
pip install -r requirements.txt

# Make exploit executable
chmod +x exploit.py

# Run the exploit
./exploit.py -u http://target.com/cms

Alternative using wget:

root@kitploit:~
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt
pip install -r requirements.txt
chmod +x exploit.py
./exploit.py -u http://target.com/cms

Requirements

  • Python 3.6+
  • Required packages (see requirements.txt)

Installation

  1. Clone this repository:
root@kitploit:~
git clone https://github.com/del0x3/CVE-2019-9053-port-py3.git
cd CVE-2019-9053-port-py3
  1. Install the required packages:
root@kitploit:~
pip install -r requirements.txt

Usage

Basic usage:

root@kitploit:~
python3 exploit.py -u http://target.com/cms

With password cracking:

root@kitploit:~
python3 exploit.py -u http://target.com/cms -c -w /path/to/wordlist.txt

Arguments

  • -u, --url: Base target URL (required)
  • -w, --wordlist: Path to wordlist for password cracking
  • -c, --crack: Enable password cracking mode

Disclaimer

This tool is for educational and security research purposes only. Do not use it against systems without explicit permission.

Credits

  • Original exploit by Daniele Scanu
  • Python 3 port by Del0x3

License

MIT License

Download Tool