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-2022-0169 — CVE-2022-0169 - WordPress Photo Gallery SQLi PoC | Kitploit
Tools/GitHubGitHub/x3rx3ssec/cve-2022-0169
Password CrackingVulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringLearning & Education
GitHubx3rx3ssec/cve-2022-0169

CVE-2022-0169

CVE-2022-0169 - WordPress Photo Gallery SQLi PoC

View Repository
31 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-2022-0169 — WordPress Photo Gallery SQLi PoC

This is a simple Python proof-of-concept (PoC) for CVE-2022-0169, an SQL injection vulnerability in the WordPress Photo Gallery plugin.


What it does

  • Checks the WordPress version (if available)
  • Exploits the vulnerable admin-ajax.php endpoint
  • Dumps wp_users usernames and password hashes
  • Saves results in timestamped folders
  • Prompts you to crack them with hashcat if you want

This tool is for educational purposes only. Use responsibly! Like you would listen to this.. 😆


🤌Usage

🖕 Single target

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

🖐️ Multiple targets

root@kitploit:~
python3 exploit.py -f targets.txt

🕺 Options

Example:

root@kitploit:~
python3 exploit.py -u http://victim.com -w /usr/share/wordlists/rockyou.txt

Requirements

root@kitploit:~
requests
argparse
colorama

🦠 Results

  • Dumps are saved in results/YYYYMMDD_HHMMSS/
  • One HTML dump per target
  • Extracted hashes in separate files for easy cracking

When hashes are found, you’ll be asked:

root@kitploit:~
Crack the hashes with hashcat now? [Y/N]:

If you hit Y, hashcat will run automatically using your selected wordlist.


🔫 Example attack flow

  1. Run the script on your target(s).
  2. Check the results/ folder for dumps and hashes.
  3. Crack them with hashcat:
    root@kitploit:~
    hashcat -m 400 -a 0 results/YYYYMMDD_HHMMSS/hashes.txt /usr/share/wordlists/rockyou.txt
    

📢 Disclaimer

This tool is for educational and authorized testing only. You are solely responsible for how you use it. Always get permission before scanning or exploiting any system.

Stay cyberpunk.
— X3RX3S

Download Tool
OptionDescription
-uSingle target URL
-fFile with list of targets
-pProxy (e.g., http://127.0.0.1:8080)
-tNumber of threads (default: 5)
-wChoose wordlist for hashcat (default: rockyou.txt) Make sure that rockyou.txt is gunzipped!