SecBox tool; a lightweight, container based malware analysis sandbox. Requires Python version 3.9.
The frontend requires Node 16.X and Yarn. To install the dependencies go to
├── SecBox
│ ├── app
and run npm install
. Create a .env file with the value VUE_APP_ROOT with the desired backend IP, e.g. VUE_APP_ROOT="localhost:5000"
for if you are running it locally.
The backend requires python 3.9 and pip. All dependencies required for the backend can be installed in
├── SecBox
│ ├── api
with pip install -r requirements.txt
.
To add a mongo DB, a .env file in this directory must be configured:
DB_PORT= "27017"
HOST_BITNESS= 64
HOST="mongodb+srv://"
DB= "DB?"
python3 webapp_api.py
In order to set up the host on a machine, run:
sudo ./setup.sh
sudo ./setup_bazel_gvisor.sh
The host can then be run from the host directory by running:
sudo python3 host.py
Configuration happens through the respective .env files for the respective system components.
A demo is available on YouTube: https://www.youtube.com/watch?v=lkEE3iQvFtk