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
    • 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-26803

CVE-2025-26803: Phusion Passenger DOS Vulnerability

CVE-2025-26803 is a denial of service vulnerability in Phusion Passenger versions 6.0.21 through 6.0.25 that occurs during HTTP request parsing. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-26803 Overview

CVE-2025-26803 is a denial of service vulnerability affecting the HTTP parser in Phusion Passenger versions 6.0.21 through 6.0.25. The vulnerability allows attackers to cause service disruption by sending HTTP requests with invalid HTTP methods, triggering improper parsing behavior that leads to application unavailability.

Critical Impact

Remote attackers can exploit this vulnerability without authentication to cause denial of service conditions, potentially affecting all web applications served by vulnerable Phusion Passenger instances.

Affected Products

  • Phusion Passenger 6.0.21
  • Phusion Passenger 6.0.22, 6.0.23, 6.0.24
  • Phusion Passenger 6.0.25

Discovery Timeline

  • 2025-02-24 - CVE-2025-26803 published to NVD
  • 2025-02-28 - Last updated in NVD database

Technical Details for CVE-2025-26803

Vulnerability Analysis

This vulnerability resides in the HTTP header parser component of Phusion Passenger, specifically within the HttpHeaderParser.h file. The flaw is categorized under CWE-908 (Use of Uninitialized Resource), indicating that the parser fails to properly handle certain error states when processing malformed HTTP requests.

When the HTTP parser encounters a request with an invalid HTTP method, the vulnerability manifests due to improper state management in the llhttp parsing logic. The parser's execution flow does not correctly validate the state after resuming from paused states, leading to undefined behavior that can crash the application server.

The vulnerability is network-accessible and requires no privileges or user interaction to exploit, making it particularly dangerous for internet-facing deployments. Successful exploitation results in complete loss of availability for web applications running on the affected Passenger server.

Root Cause

The root cause lies in the http_parser_execute_and_handle_pause function within the HTTP header parser. The original implementation failed to properly check the parser error state after calling llhttp_resume() or llhttp_resume_after_upgrade() before continuing execution. This oversight allowed the parser to continue processing in an invalid state when receiving malformed HTTP methods.

The vulnerable code path handled pause states (HPE_PAUSED, HPE_PAUSED_UPGRADE) but did not re-verify the parser's error status after resumption, leading to the use of uninitialized or corrupted parser state during subsequent operations.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted HTTP requests with invalid HTTP methods to a web server running vulnerable versions of Phusion Passenger. The attack is:

  • Network-based: Exploitable remotely over HTTP/HTTPS
  • No authentication required: Anonymous attackers can trigger the vulnerability
  • No user interaction needed: Exploitation is fully automated
  • Low complexity: Simple malformed requests can trigger the condition
c
// Vulnerable code pattern from HttpHeaderParser.h
static size_t http_parser_execute_and_handle_pause(llhttp_t *parser,
    const char *data, size_t len, bool &paused)
{
    llhttp_errno_t rc = llhttp_get_errno(parser);
    switch (rc) {
    case HPE_PAUSED_UPGRADE:
        llhttp_resume_after_upgrade(parser);
        // Missing: rc = llhttp_get_errno(parser);
        goto happy_path;
    case HPE_PAUSED:
        llhttp_resume(parser);
        // Missing: rc = llhttp_get_errno(parser);
        goto happy_path;
    // ...

Source: GitHub Commit

Detection Methods for CVE-2025-26803

Indicators of Compromise

  • Unexpected Passenger process crashes or restarts in application logs
  • HTTP access logs showing requests with unusual or malformed HTTP methods
  • Increased frequency of 5xx errors returned to clients
  • System monitoring alerts for Passenger worker process terminations

Detection Strategies

  • Monitor web server access logs for HTTP requests with non-standard methods (anything other than GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS, CONNECT, TRACE)
  • Implement network intrusion detection rules to flag malformed HTTP method requests
  • Set up application performance monitoring to detect sudden service unavailability patterns
  • Review Passenger error logs for parser-related exceptions or crash dumps

Monitoring Recommendations

  • Configure alerting for Passenger process restart frequency exceeding normal thresholds
  • Deploy web application firewalls (WAF) with rules to validate HTTP method conformance
  • Enable verbose logging on Passenger instances to capture detailed request parsing information
  • Monitor system resource utilization for abnormal patterns indicating DoS conditions

How to Mitigate CVE-2025-26803

Immediate Actions Required

  • Upgrade Phusion Passenger to version 6.0.26 or later immediately
  • Review web server access logs for any exploitation attempts prior to patching
  • Consider implementing a WAF rule to reject requests with invalid HTTP methods as a temporary measure
  • Restart all Passenger instances after upgrading to ensure the patched version is active

Patch Information

Phusion has released version 6.0.26 which addresses this vulnerability. The fix properly validates the parser state after resuming from paused conditions by adding error state checks following llhttp_resume() and llhttp_resume_after_upgrade() calls.

The patched code now includes:

c
// Fixed code pattern from HttpHeaderParser.h
static size_t http_parser_execute_and_handle_pause(llhttp_t *parser,
    const char *data, size_t len)
{
    llhttp_errno_t rc = llhttp_get_errno(parser);
    switch (rc) {
    case HPE_PAUSED_UPGRADE:
        llhttp_resume_after_upgrade(parser);
        rc = llhttp_get_errno(parser);  // Added state verification
        goto happy_path;
    case HPE_PAUSED:
        llhttp_resume(parser);
        rc = llhttp_get_errno(parser);  // Added state verification
        goto happy_path;
    // ...

Source: GitHub Commit

For detailed upgrade instructions, refer to the Phusion Blog Post and the GitHub Release Notes.

Workarounds

  • Deploy a reverse proxy (nginx, Apache, HAProxy) in front of Passenger configured to validate HTTP methods before forwarding requests
  • Implement rate limiting on incoming connections to reduce the impact of DoS attempts
  • Configure web application firewall rules to block requests with non-standard HTTP methods
  • Enable Passenger's built-in security features and consider running in a containerized environment with restart policies
bash
# Example nginx configuration to filter HTTP methods
location / {
    # Allow only standard HTTP methods
    if ($request_method !~ ^(GET|POST|PUT|DELETE|PATCH|HEAD|OPTIONS)$) {
        return 405;
    }
    
    passenger_enabled on;
    passenger_app_root /var/www/myapp;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechPhusion Passenger

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.60%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-908

  • NVD-CWE-noinfo
  • Technical References
  • Phusion Passenger Support
  • Vendor Resources
  • Phusion Blog Post

  • GitHub Commit Message

  • GitHub Release Comparison

  • GitHub Release Note
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server 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