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-21661 — A Python PoC for CVE-2022-21661, adapted from z92g's Go PoC, designed to demonstrate the vulnerability in a more accessible scripting environment. | Kitploit
Tools/GitHubGitHub/fauzan-aldi/cve-2022-21661
Vulnerability AnalysisExploitationWeb Application ExploitationCTFPenetration TestingLearning & Education
GitHubfauzan-aldi/cve-2022-21661

CVE-2022-21661

A Python PoC for CVE-2022-21661, adapted from z92g's Go PoC, designed to demonstrate the vulnerability in a more accessible scripting environment.

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

🛡️ CVE-2022-21661

A Proof-of-Concept (PoC) exploit written in Python for CVE-2022-21661, which is a critical vulnerability in WordPress that allows an unauthenticated attacker to perform an object injection attack, which under certain conditions can lead to Remote Code Execution (RCE).

This implementation is inspired by z92g's Go-based PoC and aims to provide a more accessible and script-friendly version, especially for security researchers and CTF practitioners.

⚠️ This tool is intended solely for educational purposes and authorized testing. Using it on systems you do not own without permission is illegal.


📦 Installation

Clone this repository and install the required dependencies with:

root@kitploit:~
pip3 install -r requirements.txt

🚀 Usage

Run this script with a single URL or a file containing a list of URLs to check if the site is vulnerable to CVE-2022-21661:

root@kitploit:~
usage: main.py [-h] [-u URL] [-f FILE]

Identifies CVE-2022-21661 in WordPress installations.

options:
  -h, --help            Show this help message and exit
  -u URL, --url URL     Single WordPress site URL to check.
  -f FILE, --file FILE  File containing a list of WordPress URLs (one per line).

Author: FauzanAldi

🧪 Usage Examples

Check a single site:

root@kitploit:~
python3 main.py -u https://example.com

Scan multiple WordPress sites from a URL list:

root@kitploit:~
python3 main.py -f urls.txt
Download Tool