├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── up /.gitignore: -------------------------------------------------------------------------------- 1 | env/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayCTF/up-http-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayCTF/up-http-tool/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | netifaces 3 | waitress 4 | rich 5 | -------------------------------------------------------------------------------- /up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayCTF/up-http-tool/HEAD/up --------------------------------------------------------------------------------