Smuggler
HTTP Request Smuggling and Method Spoofing
Challenge
Solution
Traefik
[http]
[http.routers]
[http.routers.Router0]
entryPoints = ["web"]
service = "app"
rule = "Method(`POST`, `GET`, `OPTIONS`, `DELETE`, `PATCH`)"
[http.services]
[http.services.app]
[[http.services.app.weighted.services]]
name = "appv1"
[http.services.appv1]
[http.services.appv1.loadBalancer]
[[http.services.appv1.loadBalancer.servers]]
url = "http://go-microservice:8080/"Go Microservice
Python Microservice
HTTP Method Spoofing

HTTP Request Smuggling
Last updated