Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-64500

CVE-2025-64500: Symfony HttpFoundation Auth Bypass Flaw

CVE-2025-64500 is an authentication bypass vulnerability in Symfony's HttpFoundation component that allows attackers to circumvent access controls. This article covers the technical details, affected versions, and patches.

Published: April 1, 2026

CVE-2025-64500 Overview

CVE-2025-64500 is an authorization bypass vulnerability affecting Symfony's HttpFoundation component. The Request class improperly interprets certain PATH_INFO values in a way that leads to representing some URLs with a path that doesn't start with a /. This incorrect parsing behavior can allow attackers to bypass access control rules that are built with the assumption that URL paths always begin with a / prefix.

Symfony is a widely-used PHP framework for web and console applications, and the HttpFoundation component provides an object-oriented layer for the HTTP specification. This vulnerability has existed since version 2.0.0 and affects a significant portion of the Symfony ecosystem.

Critical Impact

Attackers can craft malicious requests with specially formatted PATH_INFO values to bypass security controls and access protected resources without proper authorization.

Affected Products

  • Sensiolabs Symfony versions 2.0.0 through 5.4.49
  • Sensiolabs Symfony versions 6.0.0 through 6.4.28
  • Sensiolabs Symfony versions 7.0.0 through 7.3.6
  • Sensiolabs HttpFoundation (standalone component) - corresponding versions

Discovery Timeline

  • 2025-11-12 - CVE-2025-64500 published to NVD
  • 2026-01-12 - Last updated in NVD database

Technical Details for CVE-2025-64500

Vulnerability Analysis

This vulnerability stems from how the Request class in Symfony's HttpFoundation component processes the PATH_INFO server variable. Under certain conditions, the class fails to properly normalize URL paths, resulting in path representations that do not begin with the expected / character.

Many applications implement access control rules based on URL path patterns, often assuming that all paths will start with a /. For example, a security rule might protect all paths starting with /admin/ to restrict access to administrative functions. When the Request class produces a path without the leading /, these pattern-matching rules may fail to recognize the path as matching the protected pattern, effectively allowing unauthorized access.

The vulnerability is network-exploitable and requires no authentication or user interaction, making it particularly concerning for internet-facing Symfony applications that rely on path-based access controls.

Root Cause

The root cause lies in the improper parsing logic within the Request class when handling edge cases in PATH_INFO values. The component did not enforce that all resulting URL paths must be normalized to start with a / character, violating the HTTP specification's expectation for absolute path references.

This represents a CWE-647 (Use of Non-Canonical URL Paths for Authorization Decisions) weakness, where the application makes security decisions based on URL paths without properly canonicalizing them first.

Attack Vector

An attacker can exploit this vulnerability by sending HTTP requests with specially crafted PATH_INFO values to a Symfony application. When the application's Request object parses these malicious values, the resulting path representation lacks the leading /, which can cause path-based security checks to fail.

The attack is particularly effective against applications that:

  • Use Symfony's security component with path-based access rules
  • Implement custom middleware that checks paths using prefix matching
  • Rely on firewall configurations that match URL patterns starting with /

For detailed technical analysis, refer to the Symfony Blog CVE-2025-64500 Analysis and the GitHub Security Advisory.

Detection Methods for CVE-2025-64500

Indicators of Compromise

  • Unusual HTTP requests with malformed or non-standard PATH_INFO values in server logs
  • Access to protected resources by unauthenticated or unauthorized users
  • Web application firewall logs showing requests with paths that don't conform to expected URL patterns
  • Application logs indicating successful access to resources that should have been denied

Detection Strategies

  • Review web server access logs for requests containing PATH_INFO values with unusual formatting or encoding
  • Monitor application authentication and authorization logs for access pattern anomalies
  • Implement Web Application Firewall (WAF) rules to detect and block requests with non-canonical URL paths
  • Use SentinelOne Singularity to detect exploitation attempts through behavioral analysis of web application processes

Monitoring Recommendations

  • Enable detailed logging for Symfony security component events and access denials
  • Configure alerting for repeated access attempts to protected paths from the same source
  • Monitor for increases in authorization failures that may indicate bypass attempts
  • Implement runtime application self-protection (RASP) to detect path manipulation attacks

How to Mitigate CVE-2025-64500

Immediate Actions Required

  • Upgrade Symfony to version 5.4.50, 6.4.29, or 7.3.7 or later immediately
  • Review access control configurations to ensure they handle non-canonical paths
  • Audit application logs for any signs of past exploitation attempts
  • Consider implementing additional path validation at the web server or reverse proxy level

Patch Information

Symfony has released security patches that ensure the Request class always produces URL paths starting with a /. The fix is available in the following versions:

  • Symfony 5.4.50 for the 5.4.x branch
  • Symfony 6.4.29 for the 6.4.x branch
  • Symfony 7.3.7 for the 7.3.x branch

The patch can be reviewed in the GitHub commit. Organizations should update their Composer dependencies to pull in the patched versions.

Workarounds

  • Implement additional path normalization in a custom middleware before security checks are performed
  • Configure web server rewrite rules to normalize all incoming paths to ensure leading /
  • Add explicit path validation in application code that checks for and corrects missing leading slashes
  • Use a reverse proxy to canonicalize URLs before they reach the Symfony application
bash
# Update Symfony via Composer to patched version
composer require symfony/http-foundation:^5.4.50
# Or for Symfony 6.x
composer require symfony/http-foundation:^6.4.29
# Or for Symfony 7.x
composer require symfony/http-foundation:^7.3.7

# Update the entire Symfony framework
composer update symfony/symfony

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSensiolabs Httpfoundation

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-647
  • Technical References
  • GitHub Security Advisory CVE-2025-64500

  • GitHub Security Advisory CVE-2025-64500

  • Symfony Blog CVE-2025-64500 Analysis
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-3rg7-wf37-54rm
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF Vulnerability
Default Legacy - Prefooter | 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