-
-
Notifications
You must be signed in to change notification settings - Fork 931
Installation
Ali Razmjoo edited this page Sep 9, 2021
·
57 revisions
Contents:
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.
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
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