Sponsored
Dictionary and Bruteforce

Web-Brutator – Website Login Cracker

Hey Folks, in this tutorial we are going to talk about an interesting web application brute forcing tool called “Web-Brutator“. Web-brutator tool can automatically detect standard web authentication forms and perform bruteforce automatically. This feature is available via the module standardform, it is still experimental and can lead to false positives/negatives since it is based on several heuristics.

Let’s take a look 😛 !!

Install Dependencies

First of all you have to install some dependencies on your kali linux system before proceeding towards the installation of this tool.

apt install python
apt install python3
apt install python-pip
apt install python3-pip

Tool Installation

Now we will execute the git clone command to download this tool from gihtub and then go inside the directory.

git clone https://github.com/koutto/web-brutator.git
cd web-brutator/

As we know that each tool requires some other tool, so we will execute the following command to install those tools.

python3 -m pip install -r requirements.txt

Done 😛 !! As you can see in the image below that our tool has booted successfully. You can get all the details about it by adding “-h” in command.

python3 web-brutator.py -h

Now you can place your credentials and wordlists after understanding the usage of the features. Execute it after setting all the required details in the command.

  • –target : < use standardform option to identify cms by itself >
  • –url : < Login page location of the target website >
  • -U : < path of username wordlist >
  • -P : < path of password wordlist >
  • -u : < username >
  • -p : < password >
python3 web-brutator.py --target standardform --url https://secnhack.in/wp-login.php -U user.txt -P pass.txt -s -t 40 -v

BOOM 😛 !! As you can see how easily it has cracked the password of the target website along with automatically detecting the CMS.

Specify Username

Thus, if you already know the target username or email address, you can enter it using the “-u” option.

python3 web-brutator.py --target standardform --url https://secnhack.in/wp-login.php -u sg5479845@gmail.com -P pass.txt -s -t 40 -v

Great 😛 !! The results again come very impressive and you can see that we have again obtained the password for login to the target website.

Likewise, there are a lot of features inside this tool that you can use one by one and take advantage by getting login details.

About the Author
Shubham Goyal Certified Ethical Hacker, information security analyst, penetration tester and researcher. Can be Contact on Linkedin.
Sponsored

View Comments

Recent Posts

Termux Cheat Sheet for Hackers

Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…

1 month ago

Cracking the X-Factor in Cybersecurity: How Humans are Protecting the Systems?

Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…

8 months ago

Cariddi – Hidden Endpoint Finder for Bug Hunting

Hey Folks, we are back today after such a long break, but don't worry we…

2 years ago

API Security Testing 101: Know Everything About API Security Testing!

The security of your API should be one of the top priorities of companies. Without…

2 years ago

7 Best Tools for Web Penetration Testing: Comprehensive Details

Hey Folks, In today's business world, it is essential to have an online presence. However,…

2 years ago

Cyber Security Audits: Everything You Need to Know About It

Hey Folks, Is your business prepared in case of a cyber attack? Many companies don't…

2 years ago
Sponsored

This website uses cookies.