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-2026-24894

CVE-2026-24894: FrankenPHP Information Disclosure Flaw

CVE-2026-24894 is an information disclosure vulnerability in FrankenPHP that exposes session data across requests in worker mode. This article covers technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2026-24894 Overview

CVE-2026-24894 is a session data leak vulnerability affecting FrankenPHP, a modern application server for PHP. When running FrankenPHP in worker mode, the $_SESSION superglobal is not correctly reset between requests. This flaw allows a subsequent request processed by the same worker to access the $_SESSION data of the previous request (potentially belonging to a different user) before session_start() is called.

This vulnerability represents a significant information disclosure risk in multi-tenant environments where session isolation is critical for maintaining user privacy and security boundaries.

Critical Impact

Unauthorized access to sensitive session data belonging to other users, potentially enabling session hijacking, identity theft, and exposure of personally identifiable information (PII) stored in PHP sessions.

Affected Products

  • FrankenPHP versions prior to 1.11.2
  • FrankenPHP deployments running in worker mode
  • PHP applications using session management on vulnerable FrankenPHP instances

Discovery Timeline

  • 2026-02-12 - CVE CVE-2026-24894 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-24894

Vulnerability Analysis

This vulnerability stems from improper cleanup of the $_SESSION superglobal between requests when FrankenPHP operates in worker mode. Unlike traditional PHP-FPM deployments where each request runs in isolated process contexts, worker mode reuses the same PHP execution environment across multiple requests for performance optimization.

The root issue lies in how PHP's session handling interacts with FrankenPHP's worker architecture. While the session RSHUTDOWN (request shutdown) mechanism decrements the reference count of session variables, it fails to remove the $_SESSION entry from the symbol table. This leaves residual session data accessible to subsequent requests handled by the same worker process.

An attacker exploiting this vulnerability could potentially access sensitive user data including authentication tokens, user preferences, shopping cart contents, or any other data stored in PHP sessions. The exploitation requires no special privileges and can be triggered remotely through normal HTTP requests.

Root Cause

The vulnerability exists because $_SESSION is stored differently from other PHP superglobals. Unlike $_GET, $_POST, and similar variables, $_SESSION is stored in EG(symbol_table) with a reference to PS(http_session_vars). During request shutdown, the session handler only decrements the refcount but does not explicitly remove the symbol table entry, causing session data to persist and leak between worker requests.

Attack Vector

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

  1. Sending a request to a FrankenPHP server running in worker mode
  2. The request gets assigned to a worker that previously processed another user's session
  3. Before session_start() is called in the attacker's request, the previous user's $_SESSION data remains accessible
  4. The attacker's application code may inadvertently expose or process the leaked session data
c
// Security patch from FrankenPHP commit 24d6c991a7761b638190eb081deae258143e9735
// fix(worker): session leak between requests

    zval *files = &PG(http_globals)[TRACK_VARS_FILES];
    zval_ptr_dtor_nogc(files);
    memset(files, 0, sizeof(*files));

+    /* $_SESSION must be explicitly deleted from the symbol table.
+     * Unlike other superglobals, $_SESSION is stored in EG(symbol_table)
+     * with a reference to PS(http_session_vars). The session RSHUTDOWN
+     * only decrements the refcount but doesn't remove it from the symbol
+     * table, causing data to leak between requests. */
+    zend_hash_str_del(&EG(symbol_table), "_SESSION", sizeof("_SESSION") - 1);
  }
  zend_end_try();

Source: GitHub Commit Update

Detection Methods for CVE-2026-24894

Indicators of Compromise

  • Unexpected session data appearing in application logs before session_start() calls
  • User reports of seeing other users' data or account information
  • Anomalous session variable contents that don't match current request context
  • Application errors related to session type mismatches or unexpected session keys

Detection Strategies

  • Monitor application logs for session-related anomalies where session data appears before initialization
  • Implement application-level checks to validate session ownership immediately after session_start()
  • Deploy network monitoring to identify patterns of rapid sequential requests to worker-mode endpoints
  • Audit PHP code for any access to $_SESSION variables before session_start() is called

Monitoring Recommendations

  • Enable verbose logging for FrankenPHP worker processes to track request-to-worker assignments
  • Implement session integrity checks that verify user identifiers match authenticated sessions
  • Configure alerting for applications reporting session data inconsistencies
  • Review FrankenPHP deployment configurations to identify worker mode usage

How to Mitigate CVE-2026-24894

Immediate Actions Required

  • Upgrade FrankenPHP to version 1.11.2 or later immediately
  • If immediate upgrade is not possible, consider temporarily switching from worker mode to standard mode
  • Audit applications for any code that accesses $_SESSION before calling session_start()
  • Review session handling code to ensure session_start() is called as early as possible in request processing

Patch Information

The vulnerability has been fixed in FrankenPHP version 1.11.2. The patch explicitly removes the $_SESSION entry from the symbol table during request cleanup, preventing session data from leaking to subsequent requests.

  • Fixed Version:1.11.2
  • Patch Commit:24d6c991a7761b638190eb081deae258143e9735
  • Release Notes:GitHub Release v1.11.2
  • Security Advisory:GHSA-r3xh-3r3w-47gp

Workarounds

  • Call session_start() as the first operation in your PHP application entry point to minimize the window of exposure
  • Avoid accessing $_SESSION superglobal before explicitly initializing the session
  • Consider using alternative session storage mechanisms that don't rely on $_SESSION superglobal
  • Temporarily disable worker mode in favor of traditional PHP-FPM if upgrading is not immediately possible
bash
# Update FrankenPHP to patched version
# Using Docker
docker pull dunglas/frankenphp:1.11.2

# Verify version after update
frankenphp version
# Expected output should show 1.11.2 or later

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechFrankenphp

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/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-269
  • Technical References
  • GitHub Commit Update

  • GitHub Release v1.11.2

  • GitHub Security Advisory GHSA-r3xh-3r3w-47gp
  • Related CVEs
  • CVE-2026-24895: FrankenPHP RCE 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