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-27956 — CVE-2024-27956 - WP Automatic SQL Injection Exploit Tool | Kitploit
Tools/GitHubGitHub/devsec23/cve-2024-27956
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubdevsec23/cve-2024-27956

CVE-2024-27956

CVE-2024-27956 - WP Automatic SQL Injection Exploit Tool

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

WP Automatic Plugin SQL Injection Exploit (CVE-2024-27956)

Python Version License Vulnerability

A proof-of-concept exploit for the SQL injection vulnerability in WP Automatic plugin (CVE-2024-27956) affecting WordPress sites.

📌 Description

This exploit targets a critical unauthenticated SQL injection vulnerability in the WP Automatic plugin (versions < 3.9.2.0) for WordPress. The vulnerability allows attackers to create administrative users and gain full control of vulnerable websites.

🚀 Features

  • Automated vulnerability verification
  • Admin user creation with configurable credentials
  • Automatic strong password generation
  • Clean command-line interface

🛠️ Installation

root@kitploit:~
git clone https://github.com/devsec23/CVE-2024-27956.git
cd CVE-2024-27956
pip install -r requirements.txt

💻 Usage

Download Tool

Basic exploitation:

root@kitploit:~
python3 exploit.py http://vulnerable-site.com

Custom username and password:

root@kitploit:~
python3 exploit.py http://vulnerable-site.com -u admin -p P@ssw0rd123

Using a proxy:

root@kitploit:~
python3 exploit.py http://vulnerable-site.com --proxy http://127.0.0.1:8080

📋 Options

root@kitploit:~
positional arguments:
  url                   Target WordPress URL

optional arguments:
  -h, --help            show this help message and exit
  -u USERNAME, --username USERNAME
                        Username for the new admin account
  -p PASSWORD, --password PASSWORD
                        Password for the new admin account

⚠️ Legal Disclaimer

This tool is provided for educational and authorized penetration testing purposes only. The developer is not responsible for any misuse of this software. Always obtain proper authorization before testing any systems.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.

🔗 References

  • CVE-2024-27956 Details
  • WP Automatic Plugin
  • WordPress Security Advisory
root@kitploit:~