Hey Folks, In this tutorial we are going to discuss an github tool called “URLBuster”. The tool is similar to dirb or gobuster, but has a lot of manipulation options and is designed for web directory fuzzer to locate existing and / or hidden files or directories.
Lets take a look 🙂 !!
Installation is not difficult, but we should have a pip tool in our system from which we will download it. If you do not have it, you can use the following command and download the pip tool.
apt-get install python-pip
Now the time to install this tool and through the below given command we will easily configure it on our system.
pip install urlbuster
All has been done and now we will execute the help command which will give us all the usage details of this tool.
urlbuster --help
You can see the basic usage of this tool through giving the image below but we will take an example.
In this tool we have to give the wordlist otherwise it will not work so you can see the code given below and manipulate the target and the wordlist according to your requirement. After executing the command you will see all the settings that it will use during fuzzing.
Usage 🙂 urlbuster -W < location > < target >
urlbuster -W /root/wordlist.txt http://192.168.0.104/
Nice 🙂 Observe the results and see how important directories and files we got from executing the above command.
When we visit any website then first TLS handshake processed and if the handshakes succeed then client and server both can communicate and transfer the data to each other. But through this facility we can get the information anonymously without TLS verification.
urlbuster -k -W /root/wordlist.txt http://192.168.0.104/
This feature will help to anonymous itself becuase new connection for every request and if not specified persistent http connection will be used for all requests.
urlbuster -k -n -W /root/wordlist.txt http://192.168.0.104/
This features will give us the brief details such as : missed URLs, redirection, response code etc. Just we will add “-v” parameter in our search.
urlbuster -k -n -W /root/wordlist.txt http://192.168.0.104/ -v
After adding this one we have got status code of the all HTTP requests.
HTTP status code to treat as success and if we only want to see the specific HTTP response or status code then we go with it. We can add more response code through giving the space.
urlbuster -W /root/wordlist.txt http://192.168.0.104/ --code 200
Here you can see that we got only 200 HTTP response results.
To keep anonymous yourself we can set custom http header string which will be send to the server and the victim will not identify the exact details about the target.
urlbuster -W /root/wordlist.txt http://192.168.0.104/ --header key:ubuntu
Sometimes we need to send the request to the server in a different way which depends on the situation, we can use this feature in it.
urlbuster -W /root/wordlist.txt http://192.168.0.104/ --method POST
Done 🙂 !! Now you can see that the request has successfully gone with POST method and similarly we can use all these attributes to get better results.
A keen learner and passionate IT student. He has done Web designing, CCNA, RedHat, Ethical hacking, Network & web penetration testing. Currently, he is completing his graduation and learning about Red teaming, CTF challenges & Blue teaming.
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.