Skip to content

Installation

illwill edited this page Aug 2, 2019 · 7 revisions

Skiptracer has been tested on Kali and OSX.

Installation on Kali

Clone Skiptracer from Github:

git clone https://github.com/xillwillx/skiptracer.git skiptracer
cd skiptracer

Install dependencies:

sudo pip install -r requirements.txt

Installation on OSX

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.

Dockerized Environment

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.

Clone this wiki locally