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-2023-22622 — Python Script that will DoS a WP server that is utilizing WP-CRON | Kitploit
Tools/GitHubGitHub/michael-david-fry/cve-2023-22622
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubmichael-david-fry/cve-2023-22622

CVE-2023-22622

Python Script that will DoS a WP server that is utilizing WP-CRON

View Repository
422 years 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

DoS WP-Cron - CVE-2023-22622 Exploit PoC

Overview

This repository contains a script that exploits the CVE-2023-22622 vulnerability in WordPress, causing a Denial of Service (DoS) via WP-Cron. This script can be used to flood a vulnerable WordPress site with requests, potentially leading to server overload.

Exploit Details

  • Exploit Title: DoS WP-Cron - CVE-2023-22622
  • Date: 07/29/2024
  • Exploit Author: Michael Fry
  • Vendor Homepage: WordPress
  • Software Link: Download WordPress
  • Version: Up to (including) 6.6.1
  • Tested on: Kali Linux
  • CVE: CVE-2023-22622

Requirements

  • Python 3.x
  • requests library
  • A vulnerable instance of WordPress

Installation

Clone the repository:

root@kitploit:~
git clone https://github.com/michael-david-fry/DoS-WP-Cron-CVE-2023-22622.git
cd DoS-WP-Cron-CVE-2023-22622

Install the required Python libraries:

root@kitploit:~
pip install requests

Usage

This script allows you to send a large number of HTTP requests to a specified URL, which can potentially cause a Denial of Service (DoS) on a vulnerable WordPress site.

Command-Line Arguments

  • -m, --method: Specify the HTTP request method (GET or POST).
  • -u, --url: Specify the target URL.
  • -d, --data: Data payload for POST requests (optional).
  • -t, --threads: Number of threads to be used (default: 500).

Example Usage

root@kitploit:~
python exploit.py -m GET -u http://example.com/wp-cron.php -t 1000

Script Details

Global Variables

  • request_counter: Keeps track of the number of requests sent.
  • printed_msgs: Stores messages that have been printed to avoid duplication.
  • lock: Threading lock to ensure thread safety.

Functions

  • print_msg(msg): Prints a message once.
  • handle_status_codes(status_code): Handles HTTP status codes and prints appropriate messages.
  • send_request(method, url, payload=None): Sends an HTTP request and handles the response.
  • main(): Parses command-line arguments and initiates the sending of requests using a thread pool.

Disclaimer

This exploit is provided for educational purposes only. The author is not responsible for any damage caused by the use of this exploit. Use it at your own risk and ensure you have proper authorization before testing it on any site.

Download Tool