-
-
Notifications
You must be signed in to change notification settings - Fork 931
Installation
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.8.
PLEASE NOTE: Starting from Nettacker version 0.0.3 the support for Python2 and Python <3.8 has been dropped. If you have a requirement to use Nettacker on Python 2.x or 3.0-3.7 you can use the legacy version of Nettacker v0.0.2
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
PLEASE NOTE: Python version 3.8.12 or higher is required to run Nettacker v.0.0.3. You can check the version of Python3 installed by running:
python3 -V
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