If you are a CTF player or bug bounty hunter then you will know about enumeration how important it is and we waste our time executing commands, But in this tutorial we will talk about a tool that will save our time by executing the command automatically and will give us the result. It will automatically detect web applications’ service, vulnerabilities, hidden directories as well as their exploits, which we can use to take advantage of them. The tool is named “autoenum” which is available on Github.
Requirements
Kali Linux
Lets take a look 🙂 !!
First we will download it from the github page and install on our terminal. Then we will go to the directory and give some important permission of this tool.
git clone https://github.com/thatonetester/autoenum.git
cd autoenum
chmod +x autoenum.sh
All thing is complete ! we can start this tool using the bash command. After start the tool the “autoenum” will apear on terminal in which we can use the help command to see the features of this tool.
bash autoenum.sh
First we have to enter the IP address of the target machine that we want to enumerate. Keep in mind we have to give only the IP address.
Now we can enumerate the services one by one. First we will use this aggressive scan feature.
As you can see it has given details of open ports and their versions.
Without execute the more command it will automatically find the NSE vulnerable script for open ports.
Now it is time to find the vulnerability on the host machine, for this we will use the following command. It will take some time but we will get complete information about the target machine.
Always first it will enumerate the services because some time port exploitation depend on the version of the ports.
As you can see, anonymous login details of ftp port have been found in it.
We can use the following method to send the request to the server.
As you can see, with the help of port enumeration, we came to know the exploits of the port which can give us control of the web server.
Continue Reading…..
As you can see that it tries to find the well known smb vulnerability by execute the nmap scripts.
We can see the details of the front page of the web application in the CLI interface.
It is testing well-known ssl vulnerabilities on the target machine such as heartbleed etc.
It is trying to find the hidden directory using the Go buster tool.
As you can see that it has provide us the deep details of port 80 with uses the nikto tool.
It will continuously tries fuzzing on every web application protocol.
Done !! As you can see it gives us all these details by executing only one command. So it can be used when we are playing CTF challenges so that we can save our time. Also, you can check more features of this tool and get more information.
The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…
Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…
Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…
Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…
Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…
Hey Folks, we are back today after such a long break, but don't worry we…
This website uses cookies.