Skip to content

Installation

Ali Razmjoo edited this page Sep 9, 2021 · 57 revisions

Contents:

Supported Platforms

OWASP Nettacker runs on Linux operating system (we recommend using the docker image to be able to run it on any OS). If you would like to run this on your machine you must install all dependencies and Python 3.

Dependencies

Before using this software, please install the requirements following the below command lines.

Install Python 3.

apt-get update
apt-get install -y python3 python3-dev python3-pip
pip3 install --upgrade pip3

Install Requirements.

apt-get update
apt-get install -y < requirements-apt-get.txt
pip3 install --upgrade pip
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt

Now you should be able to run nettacker via command python3 nettacker.py

Make your life easier using docker

To run the API server, just run docker-compose up. if you need to run via command line use the commands below.

docker-compose up -d && docker exec -it nettacker_nettacker_1 /bin/bash
Clone this wiki locally