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-24895

CVE-2026-24895: FrankenPHP RCE Vulnerability

CVE-2026-24895 is a remote code execution vulnerability in FrankenPHP caused by improper Unicode handling in CGI path splitting. Attackers can exploit this to execute unintended files. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 13, 2026

CVE-2026-24895 Overview

CVE-2026-24895 is a high-severity vulnerability in FrankenPHP, a modern application server for PHP. The vulnerability exists in the CGI path splitting logic, which improperly handles Unicode characters during case conversion operations. This flaw can allow attackers to manipulate request paths to execute unintended PHP files on vulnerable servers.

Critical Impact

Attackers can exploit Unicode case conversion inconsistencies to execute arbitrary PHP files by crafting malicious request paths, potentially leading to complete server compromise.

Affected Products

  • FrankenPHP versions prior to 1.11.2

Discovery Timeline

  • February 12, 2026 - CVE-2026-24895 published to NVD
  • February 12, 2026 - Last updated in NVD database

Technical Details for CVE-2026-24895

Vulnerability Analysis

This vulnerability stems from an incorrect implementation of path splitting logic within FrankenPHP's CGI handling mechanism. The flaw involves a mismatch between byte-level string operations performed on different character encodings. When FrankenPHP processes incoming HTTP requests, it searches for .php extensions in the URL path to determine which PHP script to execute. The implementation computes the split index by first converting the request path to lowercase using Go's strings.ToLower() function, then applying that calculated byte index back to the original, unmodified request path.

The core issue arises because certain UTF-8 encoded Unicode characters expand in byte length when converted to lowercase. For example, the character Ⱥ (Latin Capital Letter A with Stroke) is represented as 2 bytes in UTF-8, but its lowercase equivalent requires 3 bytes. This byte length expansion causes the computed index to be misaligned with the original string's structure, resulting in incorrect values for SCRIPT_NAME and SCRIPT_FILENAME environment variables.

Root Cause

The vulnerability is classified under CWE-180 (Incorrect Behavior Order: Validate Before Canonicalize). The root cause is the improper handling of Unicode normalization and case conversion in path processing. The code incorrectly assumes that the byte length of a string remains constant after case conversion, which is not true for certain UTF-8 characters. This assumption leads to index miscalculation when the lowercased copy of the path has a different byte length than the original.

Attack Vector

An attacker can exploit this vulnerability by crafting HTTP requests containing specific Unicode characters in the URL path. By strategically placing characters that expand during lowercase conversion, an attacker can manipulate the computed split index to point to a different location in the original path than intended. This manipulation can cause FrankenPHP to execute a different PHP file than the one specified in the URI.

The attack is network-based and requires no authentication or user interaction. An attacker could potentially:

  1. Bypass security controls that rely on path-based access restrictions
  2. Execute PHP files that should not be directly accessible
  3. Achieve arbitrary code execution if combined with file upload functionality

The vulnerability can be triggered by sending a crafted HTTP request containing Unicode characters like Ⱥ in the path segment preceding the .php extension, causing the server to misinterpret which file should be executed.

Detection Methods for CVE-2026-24895

Indicators of Compromise

  • HTTP requests containing unusual Unicode characters in URI paths, particularly characters like Ⱥ, Ⱦ, or other characters that expand when lowercased
  • Web server logs showing requests with extended UTF-8 byte sequences preceding .php extensions
  • Unexpected PHP file executions or error logs indicating script path mismatches
  • Access attempts to PHP files that should not be publicly accessible

Detection Strategies

  • Monitor web server access logs for requests containing non-ASCII characters in paths targeting PHP files
  • Implement Web Application Firewall (WAF) rules to detect and block requests with suspicious Unicode patterns in URL paths
  • Review FrankenPHP application logs for anomalies in SCRIPT_NAME or SCRIPT_FILENAME values
  • Deploy intrusion detection signatures that identify UTF-8 encoded characters known to expand during case conversion

Monitoring Recommendations

  • Enable verbose logging on FrankenPHP servers to capture full request paths including Unicode characters
  • Set up alerts for requests where the executed script path doesn't match the expected request URI
  • Monitor for unusual patterns of PHP file access that deviate from normal application behavior
  • Implement anomaly detection for web traffic containing high concentrations of extended Unicode characters

How to Mitigate CVE-2026-24895

Immediate Actions Required

  • Upgrade FrankenPHP to version 1.11.2 or later immediately
  • Review access logs for any signs of exploitation attempts using Unicode-crafted paths
  • Implement WAF rules to filter requests containing suspicious Unicode patterns while awaiting patching
  • Audit PHP file permissions to ensure only intended files are executable

Patch Information

The vulnerability has been fixed in FrankenPHP version 1.11.2. The fix addresses the byte index miscalculation by properly handling Unicode characters during path splitting operations. The security patch is available through the official GitHub release.

For technical details on the fix implementation, refer to the GitHub commit and the security advisory GHSA-g966-83w7-6w38.

Workarounds

  • Deploy a reverse proxy or WAF in front of FrankenPHP that normalizes Unicode characters before passing requests to the application server
  • Implement request filtering at the network edge to reject URLs containing potentially problematic Unicode characters
  • Restrict access to the FrankenPHP server to trusted networks until patching can be completed
  • Configure file system permissions to limit which PHP files can be executed, reducing the impact of path manipulation attacks

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechFrankenphp

  • SeverityHIGH

  • CVSS Score8.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-180
  • Technical References
  • GitHub Commit Update

  • GitHub Release v1.11.2

  • GitHub Security Advisory GHSA-g966-83w7-6w38
  • Related CVEs
  • CVE-2026-24894: FrankenPHP Information Disclosure Flaw
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