How to install Viper-Web
First we install the dependencies
sudo apt install git build-essential python3 python3-dev python3-pip exiftool clamav-daemon tor libdpkg-perl libssl-dev swig libffi-dev ssdeep libfuzzy-dev unrar p7zip-full virtualenv gcc
We create and activate an environment
virtualenv --python=python3 ~/venv/viper
. ~/venv/viper/bin/activate
Clone and install viper
git clone https://github.com/viper-framework/viper
cd viper
pip install .
Open viper and update modules
viper
update-modules
Clone viper-web in .viper
cd ~/.viper
git clone https://github.com/viper-framework/viper-web.git
cd viper-web
pip install -r requirements.txt
We get an error when running viper-web
./viper-web
Change code in itypes.py
nano ~/venv/viper/lib/python3.10/site-packages/itypes.py
In line 2 we put this
from collections.abc import Mapping, Sequence
And finally we run it
./viper-web
We can change the launch options in
nano ~/.viper/viper.conf
And go to [web]
Based on the tutorial of f0wL's Blog
How to install Viper-Web
First we install the dependencies
sudo apt install git build-essential python3 python3-dev python3-pip exiftool clamav-daemon tor libdpkg-perl libssl-dev swig libffi-dev ssdeep libfuzzy-dev unrar p7zip-full virtualenv gccWe create and activate an environment
virtualenv --python=python3 ~/venv/viper. ~/venv/viper/bin/activateClone and install viper
git clone https://github.com/viper-framework/vipercd viperpip install .Open viper and update modules
viperupdate-modulesClone viper-web in .viper
cd ~/.vipergit clone https://github.com/viper-framework/viper-web.gitcd viper-webpip install -r requirements.txtWe get an error when running viper-web
./viper-webChange code in itypes.py
nano ~/venv/viper/lib/python3.10/site-packages/itypes.pyIn line 2 we put this
from collections.abc import Mapping, SequenceAnd finally we run it
./viper-webWe can change the launch options in
nano ~/.viper/viper.confAnd go to [web]
Based on the tutorial of f0wL's Blog