├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.py ├── requirements.txt ├── sniffndetect.py ├── static └── style.css └── templates └── homepage.html /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__/ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | scapy 2 | quart -------------------------------------------------------------------------------- /sniffndetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/sniffndetect.py -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamharsh14/SniffnDetect/HEAD/templates/homepage.html --------------------------------------------------------------------------------