The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-32431

CVE-2025-32431: Traefik Path Traversal Vulnerability

CVE-2025-32431 is a path traversal vulnerability in Traefik reverse proxy that allows attackers to bypass middleware chains and access unauthorized backends. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-32431 Overview

CVE-2025-32431 is a path traversal vulnerability affecting Traefik, a popular HTTP reverse proxy and load balancer widely deployed in containerized and microservice environments. The vulnerability exists in how Traefik handles URL path routing when using PathPrefix, Path, or PathRegex matchers. By injecting /../ sequences into request URLs, attackers can bypass the intended router configuration and target backends exposed through different routers, effectively circumventing the entire middleware security chain.

Critical Impact

Attackers can bypass authentication, authorization, rate limiting, and other security middleware by exploiting path traversal in Traefik routing, potentially gaining unauthorized access to protected backend services.

Affected Products

  • Traefik versions prior to 2.11.24
  • Traefik versions prior to 3.3.6
  • Traefik 3.4.0 and 3.4.0-rc1

Discovery Timeline

  • 2025-04-21 - CVE-2025-32431 published to NVD
  • 2025-11-25 - Last updated in NVD database

Technical Details for CVE-2025-32431

Vulnerability Analysis

This vulnerability falls under CWE-22 (Path Traversal) and affects the core routing mechanism of Traefik. When Traefik is configured to route requests to backends using path-based matchers (PathPrefix, Path, or PathRegex), the router does not properly sanitize URL paths containing directory traversal sequences before matching.

The flaw allows attackers to craft malicious URLs containing /../ sequences that manipulate path resolution during the routing phase. This means a request intended for one router can be redirected to match a different router's rules, completely bypassing any middleware (such as authentication, authorization, or rate limiting) that would normally be applied.

The network-accessible nature of this vulnerability combined with no authentication requirements makes it particularly dangerous in environments where Traefik exposes multiple services with different security postures. An attacker with no prior access can potentially reach protected internal services that were assumed to be secured by middleware chains.

Root Cause

The root cause lies in insufficient path normalization during Traefik's request routing process. When a request URL contains relative path components like /../, Traefik's path matchers evaluate the raw path rather than a canonicalized version. This allows path-based routing decisions to be manipulated by attackers, causing requests to be routed through unintended paths while appearing to match legitimate route configurations.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying Traefik-fronted services with path-based routing
  2. Crafting HTTP requests with /../ sequences in the URL path
  3. Sending requests that appear to match one route but are processed by another
  4. Bypassing middleware protections (auth, rate limiting, access controls) applied to the legitimate route
  5. Accessing backend services directly without security controls

For example, if /admin is protected by authentication middleware and /public is not, an attacker might craft a request like /public/../admin/sensitive-endpoint to bypass the authentication middleware while still reaching the admin backend.

See the GitHub Security Advisory for additional technical details on exploitation scenarios.

Detection Methods for CVE-2025-32431

Indicators of Compromise

  • HTTP access logs containing URLs with /../ or %2e%2e%2f sequences in path components
  • Requests reaching backend services that should be blocked by middleware (authentication failures not occurring when expected)
  • Unusual traffic patterns to protected endpoints from unauthorized sources
  • Access log entries showing successful requests to sensitive endpoints without corresponding authentication events

Detection Strategies

  • Implement log analysis rules to detect path traversal patterns (/../, ..%2f, %2e%2e/) in incoming HTTP request URLs
  • Deploy Web Application Firewall (WAF) rules to block requests containing directory traversal sequences
  • Enable Traefik access logging and monitor for requests reaching protected backends without proper authentication headers
  • Create alerts for requests that match public route patterns but access admin or sensitive backend paths

Monitoring Recommendations

  • Enable verbose access logging in Traefik to capture full request URLs including path components
  • Implement real-time monitoring for path traversal attack patterns in proxy logs
  • Set up correlation rules to detect authentication bypass attempts by comparing middleware events with backend access logs
  • Monitor for increased error rates or unusual response codes from protected backend services

How to Mitigate CVE-2025-32431

Immediate Actions Required

  • Upgrade Traefik to patched versions: 2.11.24, 3.3.6, or 3.4.0-rc2 immediately
  • If immediate upgrade is not possible, implement the PathRegexp workaround to block path traversal in routes
  • Review Traefik access logs for evidence of exploitation attempts
  • Audit current Traefik configurations for routes using PathPrefix, Path, or PathRegex matchers

Patch Information

Traefik has released patched versions that address this vulnerability:

  • Version 2.11.24 - GitHub Release v2.11.24
  • Version 3.3.6 - GitHub Release v3.3.6
  • Version 3.4.0-rc2 - GitHub Release v3.4.0-rc2

The fix is detailed in the Traefik Pull Request #11684.

Workarounds

  • Add a PathRegexp rule to all affected matchers to explicitly reject requests containing /../ in the path
  • Deploy an upstream WAF or reverse proxy that normalizes paths before forwarding to Traefik
  • Implement network segmentation to limit access to the Traefik ingress layer
  • Consider temporarily disabling path-based routing for sensitive services until patching is complete
yaml
# Traefik configuration workaround example
# Add this PathRegexp rule to prevent matching routes with /../ in the path
http:
  routers:
    secure-router:
      rule: "PathPrefix(`/api`) && !PathRegexp(`.*\\.\\./.*`)"
      middlewares:
        - auth-middleware
      service: api-service

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechTraefik

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Release v2.11.24

  • GitHub Release v3.3.6

  • GitHub Release v3.4.0-rc2
  • Vendor Resources
  • GitHub Pull Request

  • GitHub Security Advisory GHSA-6p68-w45g-48j7
  • Related CVEs
  • CVE-2025-54386: Traefik Path Traversal Vulnerability

  • CVE-2025-47952: Traefik Path Traversal Vulnerability

  • CVE-2026-33433: Traefik Auth Bypass Vulnerability

  • CVE-2026-32695: Traefik Auth Bypass Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English