Devfolio project link: https://devfolio.co/projects/apt-threat-detection-e83e
We had updated few changes in the file https://drive.google.com/file/d/1bSqtSB5TOez6Anm98HvO8xVTVw9_q41D/view?usp=drive_link kindly go through this video once
Follow these steps to create and activate a virtual environment using virtualenv.
cd src-code
First, ensure you have virtualenv
installed globally on your system:
pip install virtualenv
virtualenv env
.\env\Scripts\activate
pip install -r requirements.txt
pip install --upgrade Flask Werkzeug
pip install Flask==2.0.3 Werkzeug==2.0.3
python app.py
apt-detection-app/
├── app/
│ ├── __init__.py
│ ├── routes.py
│ ├── analysis.py
│ ├── model.py
│ ├── firewall.py
│ ├── pcap_to_csv.py
│ └── templates/
│ ├── index.html
│ ├── result.html
├── static/
│ ├── css/
│ │ └── styles.css
│ ├── js/
│ │ └── main.js
├── models/
│ └── apt_detection_model.pkl
├── run.py
└── requirements.txt