Skip to content

Installation

enki-1 edited this page Jun 7, 2018 · 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.


Now head over to the Usage page to get started using Skiptracer.

Clone this wiki locally