CVE-2025-32431: Traefik has a possible vulnerability with the path matchers
Impact
There is a potential vulnerability in Traefik managing the requests using a PathPrefix, Path or PathRegex matcher.
When Traefik is configured to route the requests to a backend using a matcher based on the path, if the URL contains a /../ in its path, it’s possible to target a backend, exposed using another router, by-passing the middlewares chain.
Example
yaml apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: my-service spec: routes: - match: PathPrefix(‘/service’) kind: Rule services: - name: service-a port: 8080 middlewares: - name: my-middleware-a - match: PathPrefix(‘/service/sub-path’) kind: Rule services: - name: service-a port: 8080
In such a case, the request http://mydomain.example.com/service/sub-path/../other-path will reach the backend my-service-a without operating the middleware my-middleware-a unless the computed path is http://mydomain.example.com/service/other-path and should be computes by the first router (operating my-middleware-a).
Patches
- https://github.com/traefik/traefik/releases/tag/v2.11.24 - https://github.com/traefik/traefik/releases/tag/v3.3.6 - https://github.com/traefik/traefik/releases/tag/v3.4.0-rc2
Workaround
Add a PathRegexp rule to the matcher to prevent matching a route with a /../ in the path.
Example:
yaml match: PathPrefix(/service) && !PathRegexp((?:(/\.\./)+.))
For more information
If you have any questions or comments about this advisory, please open an issue.
Other sources
Traefik (pronounced traffic) is an HTTP reverse proxy and load balancer. In versions prior to 2.11.24, 3.3.6, and 3.4.0-rc2. There is a potential vulnerability in Traefik managing the requests using a PathPrefix, Path or PathRegex matcher. When Traefik is configured to route the requests to a backend using a matcher based on the path, if the URL contains a /../ in its path, it’s possible to target a backend, exposed using another router, by-passing the middlewares chain. This issue has been patched in versions 2.11.24, 3.3.6, and 3.4.0-rc2. A workaround involves adding a PathRegexp rule to the matcher to prevent matching a route with a /../ in the path.
— MITRE
Affected Software
Remediation
Patch Available
Event History
Frequently Asked Questions
What is the severity of CVE-2025-32431?
CVE-2025-32431 has the potential to lead to unauthorized access under certain configurations.
How do I fix CVE-2025-32431?
To address CVE-2025-32431, upgrade Traefik to version 2.11.24 or later, or 3.3.6 or later.
What versions are affected by CVE-2025-32431?
CVE-2025-32431 affects Traefik versions prior to 2.11.24, 3.3.6, and 3.4.0-rc2.
What configurations are vulnerable in CVE-2025-32431?
CVE-2025-32431 is vulnerable when Traefik is configured to manage requests using PathPrefix, Path, or PathRegex matchers.
Is CVE-2025-32431 a zero-day vulnerability?
CVE-2025-32431 is not classified as a zero-day vulnerability since it has been disclosed and a fix is available.