├── LICENSE ├── README.md ├── lib ├── Constants.py ├── SocketConnection.py ├── Utils.py ├── __init__.py └── __pycache__ │ ├── Constants.cpython-38.pyc │ ├── SocketConnection.cpython-38.pyc │ ├── Utils.cpython-38.pyc │ └── __init__.cpython-38.pyc ├── payloads.json ├── requirements.txt ├── screenshots └── thumbnail.png └── smuggle.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/README.md -------------------------------------------------------------------------------- /lib/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/Constants.py -------------------------------------------------------------------------------- /lib/SocketConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/SocketConnection.py -------------------------------------------------------------------------------- /lib/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/Utils.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/__pycache__/Constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/__pycache__/Constants.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/SocketConnection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/__pycache__/SocketConnection.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/Utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/__pycache__/Utils.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/lib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /payloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/payloads.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/screenshots/thumbnail.png -------------------------------------------------------------------------------- /smuggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshumanpattnaik/http-request-smuggling/HEAD/smuggle.py --------------------------------------------------------------------------------