This page holds the setup guide you will need before kicking off the datasploit in your system. Please note that all the documentation is as per *nix machines, and the tool has not been thoroughly tested on Windows platform. If you would like to volunteer for the same, give us a shout at [email protected]. Following are the quick steps to get you going:
You can either use the git command line tools using the following command:
git clone https://github.com/upgoingstar/datasploit.git
, or you can simply download the zip file (link) and extract the same using unzip.
unzip master.zip
Go into the tool directory and install all the python libraries using the requirements.txt file. In case you encounter 'Permission Denied' error, use sudo.
cd master
pip install -r requirements.txt
Please make sure that config.py is added in your gitIgnore file so that this is not commited in any case. We care for your data too, and hence this tip. :)
mv config_sample.py config.py
Generate API keys using the api Key Generation guide at
and enter the respective values in config.py file. Leave all other key value pairs blank.
Datasploit uses mongoDb in the backend and hence require a running instance of mongoDb in order to save and query data. Install the mongoDb database as per the instructions from the below mentioned site:
Create a directory for storing the db files, and Start the mongoDb service with this database path:
mkdir datasploitDb
mongod --dbpath datasploitDb
Congratulations, you are now good to go. Lets go ahead and run our automated script for OSINT on a domain.
python domainOsint.py <domain_name>