├── .gitignore ├── README.md ├── h2c └── README.md ├── jetty ├── Dockerfile ├── README.md ├── check.sh └── docker-compose.yml ├── lab1 ├── README.md ├── ats6.Dockerfile ├── ats7.Dockerfile ├── check.sh ├── docker-compose.yml ├── haproxy.Dockerfile └── nginx.Dockerfile ├── lab2 ├── README.md ├── ats7.Dockerfile ├── check.sh ├── docker-compose.yml ├── lamp.Dockerfile ├── lamp │ └── index.php ├── lnmp.Dockerfile └── lnmp │ └── index.php ├── lab3 ├── README.md ├── check.sh ├── docker-compose.yml ├── gunicorn.dockerfile ├── haproxy.dockerfile └── src │ └── app.py ├── nginx ├── Dockerfile ├── README.md ├── check.sh ├── conf.d │ └── default.conf └── docker-compose.yml └── websocket └── lab1 ├── README.md ├── apache.dockerfile ├── conf └── default.vcl ├── docker-compose.yml ├── exp └── exp.py ├── flask.dockerfile ├── img ├── img1.png └── img2.png ├── src ├── app.py ├── static │ └── socket.io.js ├── templates │ └── index.html └── websocket.html └── varnish.dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/README.md -------------------------------------------------------------------------------- /h2c/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jetty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/jetty/Dockerfile -------------------------------------------------------------------------------- /jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/jetty/README.md -------------------------------------------------------------------------------- /jetty/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/jetty/check.sh -------------------------------------------------------------------------------- /jetty/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/jetty/docker-compose.yml -------------------------------------------------------------------------------- /lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/README.md -------------------------------------------------------------------------------- /lab1/ats6.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/ats6.Dockerfile -------------------------------------------------------------------------------- /lab1/ats7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/ats7.Dockerfile -------------------------------------------------------------------------------- /lab1/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/check.sh -------------------------------------------------------------------------------- /lab1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/docker-compose.yml -------------------------------------------------------------------------------- /lab1/haproxy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/haproxy.Dockerfile -------------------------------------------------------------------------------- /lab1/nginx.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab1/nginx.Dockerfile -------------------------------------------------------------------------------- /lab2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/README.md -------------------------------------------------------------------------------- /lab2/ats7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/ats7.Dockerfile -------------------------------------------------------------------------------- /lab2/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/check.sh -------------------------------------------------------------------------------- /lab2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/docker-compose.yml -------------------------------------------------------------------------------- /lab2/lamp.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/lamp.Dockerfile -------------------------------------------------------------------------------- /lab2/lamp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/lamp/index.php -------------------------------------------------------------------------------- /lab2/lnmp.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/lnmp.Dockerfile -------------------------------------------------------------------------------- /lab2/lnmp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab2/lnmp/index.php -------------------------------------------------------------------------------- /lab3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/README.md -------------------------------------------------------------------------------- /lab3/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/check.sh -------------------------------------------------------------------------------- /lab3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/docker-compose.yml -------------------------------------------------------------------------------- /lab3/gunicorn.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/gunicorn.dockerfile -------------------------------------------------------------------------------- /lab3/haproxy.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/haproxy.dockerfile -------------------------------------------------------------------------------- /lab3/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/lab3/src/app.py -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM nginx:1.17.6 2 | EXPOSE 80 -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/nginx/check.sh -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/nginx/docker-compose.yml -------------------------------------------------------------------------------- /websocket/lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/README.md -------------------------------------------------------------------------------- /websocket/lab1/apache.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/apache.dockerfile -------------------------------------------------------------------------------- /websocket/lab1/conf/default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/conf/default.vcl -------------------------------------------------------------------------------- /websocket/lab1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/docker-compose.yml -------------------------------------------------------------------------------- /websocket/lab1/exp/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/exp/exp.py -------------------------------------------------------------------------------- /websocket/lab1/flask.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/flask.dockerfile -------------------------------------------------------------------------------- /websocket/lab1/img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/img/img1.png -------------------------------------------------------------------------------- /websocket/lab1/img/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/img/img2.png -------------------------------------------------------------------------------- /websocket/lab1/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/src/app.py -------------------------------------------------------------------------------- /websocket/lab1/src/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/src/static/socket.io.js -------------------------------------------------------------------------------- /websocket/lab1/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/src/templates/index.html -------------------------------------------------------------------------------- /websocket/lab1/src/websocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/src/websocket.html -------------------------------------------------------------------------------- /websocket/lab1/varnish.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeddYu/HTTP-Smuggling-Lab/HEAD/websocket/lab1/varnish.dockerfile --------------------------------------------------------------------------------