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-2019-17240 — This is the exploit of CVE-2019-17240. | Kitploit
Tools/GitHubGitHub/pingport80/cve-2019-17240
Password AttacksExploitationIDS/IPS EvasionWeb Application ExploitationAuthentication
GitHubpingport80/cve-2019-17240

CVE-2019-17240

This is the exploit of CVE-2019-17240.

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

CVE-2019-17240 Exploit

Versions prior to and including 3.9.2 of the Bludit CMS are vulnerable to a bypass of the anti-brute force mechanism that is in place to block users that have attempted to incorrectly login 10 times or more.

The vulnerability was discovered by Rastating.

Submitting a login request with an X-Forwarded-For header value of a changing string(spoofed string) was processed successfully, and the failed login attempt was logged against the spoofed string.

The above script uses that vulnerablity to by bypass anit-brute mechanism.

There are csrf tokens in the body of the login page so before every time it does a post request with credentials it needs to fetch the csrf token from the source of last reponse.

One way of doing it is to make a get request, fetch csrf token and make a post request with credentials and fetched token and repeat until you find the password and this is what i saw in most of the scripts.

The other way is to fetch the csrf token from the response of last post request, so only for the first time you need to do a get request.

The second one is much faster compared to the first one, and a little more efficiency effects a lot when it comes to bruteforce attacks where you need to do many requests.

I tried both the ways and was able to test 63 words in 1 minute by the second way and just 19 words by the first way.

Usage

root@kitploit:~
python3 brute.py -u [url] -user [username] -w [pathToWordlist] [-t [threads to use]]

Example

root@kitploit:~
python3 brute.py -u https://192.168.10.13/ -user admin -w sysadmin -t 30

SCREENSHOT

bludit
Download Tool