CVE-2023-47106Medium· 6.5▾ SunlitTraefik incorrectly processes fragment in the URL, leads to Authorization Bypass
▾ Sunlit zone — Low / medium · no exploitation signal
impact 35.8 · likelihood 0.1 · exploitation 0
Need a working PoC? Pro members can cast a request and our team develops one — it lands right here.
Exploit-prediction probability, daily snapshots since Aug 7.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
Last analysed / modified upstream
0.6%
When a request is sent to Traefik with a URL fragment, Traefik automatically URL encodes and forwards the fragment to the backend server. This violates the RFC because in the origin-form the URL should only contain the absolute path and the query.
When this is combined with another frontend proxy like Nginx, it can be used to bypass frontend proxy URI-based access control restrictions.
For example, we have this Nginx configuration:
location /admin {
deny all;
return 403;
}
This can be bypassed when the attacker is requesting to /#/../admin
This won’t be vulnerable if the backend server follows the RFC and ignores any characters after the fragment.
However, if Nginx is chained with another reverse proxy which automatically URL encode the character # (Traefik) the URL will become
/%23/../admin
And allow the attacker to completely bypass the Access Restriction from the Nginx Front-End proxy.
Here is a diagram to summarize the attack:


This is the POC docker I've set up. It contains Nginx, Traefik proxies and a backend server running PHP.
https://drive.google.com/file/d/1vLnA0g7N7ZKhLNmHmuJ4JJjV_J2akNMt/view?usp=sharing
This allows the attacker to completely bypass the Access Restriction from Front-End proxy.
github.com/traefik/traefik/v2 < 2.10.6github.com/traefik/traefik/v3 < 3.0.0-beta5Upgrade to a patched release:
github.com/traefik/traefik/v2 2.10.6github.com/traefik/traefik/v3 3.0.0-beta5Connected by shared product, vendor, weakness, or advisory.
CVE-2023-47124Medium· 5.9Traefik vulnerable to potential DDoS via ACME HTTPChallenge
CVE-2023-47633High· 7.5Traefik docker container using 100% CPU
CVE-2023-29013High· 7.5Traefik HTTP header parsing could cause a denial of service
GHSA-46wh-3698-f2cxHighTraefik: Deny Rule Bypass via Unauthenticated Malicious gRPC Requests in gRPC-Go Dependency (CVE-2026-33186)
CVE-2026-41181MediumTraefik's errors middleware forwards Authorization and Cookie headers to separate error page service
CVE-2022-23469Low· 3.5Traefik may display authorization header in the debug logs