-
Notifications
You must be signed in to change notification settings - Fork 50
Installation
Skiptracer has been tested on Kali and OSX.
Clone Skiptracer from Github:
git clone https://github.com/xillwillx/skiptracer.git skiptracer
cd skiptracer
Install dependencies:
sudo pip install -r requirements.txt
This has been tested on OSX High Sierra 10.13.4. This installation requires brew and pipenv. If you've already got brew installed, skip those two steps.
Install Brew(Skip if you have it installed already) and pipenv:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install pipenv
Clone Skiptracer:
git clone https://github.com/xillwillx/skiptracer.git skiptracer
Install pipenv and spawn a pipenv virtual environment to run Skiptracer:
cd skiptracer
pipenv install -r requirements.txt
pipenv --python 2.7
pipenv shell
From this new pipenv virtual environment, you can run Skiptracer with all necessary dependencies.
You may run this application in a dockerized environment using the command:
docker-compose run --rm skiptracer
Note: the --rm
flag will remove the container after execution.
Now head over to the Usage page to get started using Skiptracer.