Getting information using SpiderFoot
Spiderfoot https://www.spiderfoot.net is a reconnaissance tool that performs queries over more than 100 public data sources to collect domains, names, emails, addresses, etc... Like many of the tools we have discussed, it is highly automated and will allow us to easily collect a large amount of information.
This project (https://github.com/smicallef/spiderfoot) is developed in Python and although it can be used as a tool from the command line, the most convenient way to work is to set up a web server that allows the investigation processes to be carried out. This tool can be installed with the following instructions:
$ git clone https://github.com/smicallef/spiderfoot.git
$ cd spiderfoot
$ pip3 install -r requirements.txt
$ python3 sf.py -l 127.0.0.1:5001
Another way to run the server is to use a Docker image. In the repository, we can see the presence of a Dockerfile where the manifest and declaration of how the image should be created...