Reconnoitre - A Multithreaded Enumeration Tool

Words
384
Reading
2 min
Listen
Play
7y


Reconnoitre is a tool that was created to automate routine actions within the OSCP lab environment. It is a simple script, which can automate information gathering and service enumeration. It searches for the live hosts, and performs a scan on the hosts that are found, enumerates its detected services and sends commands to it. The tool can discover virtual hosts running on the targeted system. The information is stored methodically by creating a directory like structure to store the findings, results, and methodologies used for each host, recommended commands to execute and the directory structures for storing loot and flags.

Downloading and Installing Reconnoitre


It can be downloaded in the Kali Linux with the following command;

git clone https://github.com/codingo/Reconnoitre.git
alt

Once the download completes, make sure you have python3 installed as it is a pre-requisite for the installation. You need to navigate to its downloaded directory and install it using the command given below;

python3 setup.py install
alt

Running Reconnoitre

We will first look for the help file;
reconnoitre -h
alt

You can see that it is a simplified tool with many awesome functions. In this example, we will use some basic options, like starting with the service enumeration and saving the result in a directory with them. Start the quick service enumeration scan with;

reconnoitre -t <IP ADDRESS> --services --quick -o /root
alt

The result can be seen from the directory which was mentioned in the -o argument;

alt

The above performed a quick scan on the target and provided numerous useful results in an easily readable format, now scan for the target's hostname;

alt

What Bunny rating does it get?


Reconnoitre is very easy to use, it can be customised easily using their option flags to make it do the job you require. You save a lot of time by using it, and the data you gain can be handy in the information-gathering phase. I am giving it 4 out of 5 bunnies.

alt
alt
alt
alt

Want to learn more about ethical hacking?


We have a networking hacking course that is of a similar level to OSCP, get an exclusive 95% discount HERE

Do you know of another GitHub related hacking tool?


Get in touch with us via the contact form if you would like us to look at any other GitHub ethical hacking tools.

Posted from my blog with SteemPress : https://latesthackingnews.com/2019/07/23/reconnoitre-a-multithreaded-enumeration-tool/