Venom is a Command and Control framework used by red team operators to maintain connection with compromised agents under a stealthy and encrypted channel, by providing an interactive web application and easy to use features.
Make sure to install MongoDB (Debian)
wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add - &&
echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/5.0 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list &&
sudo apt-get update &&
sudo apt-get install -y mongodb-org &&
sudo systemctl start mongod.service
Refer to MongoDB installation Guide https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-debian/
Install Venom requirements
pip3 install -r requirments.txt
Run Venom with specified port
python3 venom.py --port 1337
Run Venom and enable SSL for http listeners
python3 venom.py --port 1337 --ssl