Skip to content
Pinaki Mondal edited this page Jan 30, 2021 · 2 revisions

Lets set you up!

Requirements

You'll require:

  • A computer connected to the internet.
  • Git for cloning the repository locally. (optional)
  • A Python 3.5+ environment with pip installed.
  • A destination host IP which talks SIP (i.e. communicates on the SIP protocol).

Dependency Setup

SIPTorch only has one external dependency:

  • pluginbase: Used for the modular plugin interface.

It can be installed via pip:

python3 -m pip install pluginbase

The rest of the libraries used come pre-packaged with the standard Python 3 interpreter.

Tool Installation

Once you've the basic environment setup, follow me:

  1. Clone the repository and cd into the folder:
git clone https://github.com/0xInfection/SIPTorch
cd SIPTorch/

or

wget https://github.com/0xInfection/SIPTorch/archive/v0.1.0.tar.gz
tar -xvfz v0.1.0.tar.gz
  1. Quickly install the dependencies (if you haven't already):
python3 -m pip install requirements.txt
  1. Thats it! You're all set.

Clone this wiki locally