Posts

Showing posts from May, 2022

Netcat Tool

Image
                            Netcat Tool: Netcat tool is also know as the Swiss army knife it is used to for file-sharing , to make reverse shells , banner grabbing, scanning and we could use it to chat as well !! Interesting right , netcat , nc and Ncat all the tools do the same thing , but the thing that makes Ncat special is that it encrypts the traffic , but unlike netcat and nc it doesn't come pre-installed , now let’s stop hitting around the bush and make our hands dirty . Firstly let’s see some of the popularly used options in netcat: Fig:1.0 1)  -l option: this means to listen and this is used to open a port on our system and wait for other computers to connect 2)-v option: this means verbose mode , sometimes what happens is that  when we try to connect to other system , there might be some cases where the request is timed-out or refused and those thing aren't displayed to us , so it is always recomme...

Burteforcing webapplications with hydra

Image
Bruteforcing Webapplications using hydra Hydra tool is used to brute force , we could brute force both network and web services as well . It supports ipv6,proxy and it also has graphical user interface (GUI) . Hydra approximately supports 51 protocols  But in this blog is all about bruteforcing webapplications with hydra  Some of the flags we are going to learn , just have a peek   -l (small)       : When we wanted to give a Single Username   -L ( Capital ) : When we wanted to give a List of User Names   -p ( small )    : When we wanted to give a Single User Password   -P (Capital)   : When we wanted to give a List of Passwords   -V (verbose) : Shows Output onto the terminal in detailed mode -t (tasks)       :  specifies the number of requests we wanted the hydra tool to send per second Firstly we need to gather some info about the website or we can say the w...