├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── SEP-DDOS-detection.iml ├── app.py ├── data ├── clarknet_access_log_Aug28 └── enter.py ├── docker-compose.yml ├── main.py ├── modules ├── JSONEncoder │ └── __init__.py ├── background_task │ ├── __init__.py │ ├── sliding_window_method.py │ └── variance_method.py ├── config │ └── __init__.py ├── logger │ └── __init__.py └── routes │ └── __init__.py ├── requirements.txt ├── start.sh ├── test.py ├── test_data.py ├── test_routes.py ├── test_unit.py └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/README.md -------------------------------------------------------------------------------- /SEP-DDOS-detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/SEP-DDOS-detection.iml -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/app.py -------------------------------------------------------------------------------- /data/clarknet_access_log_Aug28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/data/clarknet_access_log_Aug28 -------------------------------------------------------------------------------- /data/enter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/data/enter.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/main.py -------------------------------------------------------------------------------- /modules/JSONEncoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/JSONEncoder/__init__.py -------------------------------------------------------------------------------- /modules/background_task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/background_task/__init__.py -------------------------------------------------------------------------------- /modules/background_task/sliding_window_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/background_task/sliding_window_method.py -------------------------------------------------------------------------------- /modules/background_task/variance_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/background_task/variance_method.py -------------------------------------------------------------------------------- /modules/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/config/__init__.py -------------------------------------------------------------------------------- /modules/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/logger/__init__.py -------------------------------------------------------------------------------- /modules/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/modules/routes/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/start.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/test.py -------------------------------------------------------------------------------- /test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/test_data.py -------------------------------------------------------------------------------- /test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/test_routes.py -------------------------------------------------------------------------------- /test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/test_unit.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumeshmadhusanka/SEP-DDOS-detection/HEAD/uwsgi.ini --------------------------------------------------------------------------------