A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43633

CVE-2026-43633: HestiaCP RCE Vulnerability

CVE-2026-43633 is a critical deserialization RCE vulnerability in HestiaCP versions 1.9.0-1.9.4 that allows unauthenticated attackers to achieve root-level code execution. This article covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2026-43633 Overview

CVE-2026-43633 is an unauthenticated remote code execution vulnerability in HestiaCP, a Linux web server control panel. The flaw exists in the web terminal component shipped with versions 1.9.0 through 1.9.4. A session format mismatch between the PHP session handler and the Node.js web terminal allows attackers to inject crafted HTTP header data that the Node.js process deserializes as trusted session state. Successful exploitation yields root-level command execution on hosts where the web terminal feature is enabled. The issue is tracked as an Insecure Deserialization weakness under [CWE-502].

Critical Impact

Unauthenticated network attackers can achieve root-level arbitrary command execution on HestiaCP servers with the web terminal enabled.

Affected Products

  • HestiaCP 1.9.0
  • HestiaCP 1.9.1 through 1.9.3
  • HestiaCP 1.9.4

Discovery Timeline

  • 2026-05-19 - CVE-2026-43633 published to NVD
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-43633

Vulnerability Analysis

HestiaCP integrates a Node.js-based web terminal that authenticates users by reading session data managed by PHP. The PHP application persists sessions to /data/sessions using PHP's native serialization format. The Node.js terminal server independently parses these session files and trusts values it extracts from them. This dual-runtime design creates a parser differential: data accepted by one runtime can be reinterpreted by the other with attacker-controlled semantics.

The web terminal also extracts client identity from HTTP headers without proper validation. An attacker can craft header values that pass through the PHP session writer and are subsequently deserialized by the Node.js parser as authenticated session content. Because the web terminal spawns shells with root privileges, deserialized attacker data is converted directly into command execution.

The vulnerability is reachable over the network without prior authentication, which removes the typical barrier of credential theft or social engineering. EPSS data records a score of 0.154% as of 2026-05-20, but the lack of an authentication requirement makes opportunistic scanning likely.

Root Cause

The root cause is reliance on two independent deserialization implementations operating over the same session store. PHP and Node.js disagree on how to interpret embedded delimiters and length prefixes within serialized blobs. Attacker-controlled header content written into the session record by PHP is parsed by Node.js as a structurally valid, trusted session object.

Attack Vector

An unauthenticated attacker sends HTTP requests with crafted headers to the HestiaCP web interface. The PHP session handler stores the malicious values, and the Node.js web terminal subsequently reads and trusts them. The terminal then spawns a shell under the impersonated identity, which runs as root.

javascript
// Patch excerpt: src/deb/web-terminal/server.js
#!/usr/bin/env node

-import { execSync } from 'node:child_process';
+import { execFileSync, execSync } from 'node:child_process';
 import { readFileSync } from 'node:fs';
 import { spawn } from 'node-pty';
 import { WebSocketServer } from 'ws';

Source: HestiaCP commit 854d71b

The patch replaces the in-process Node.js session parser with a dedicated PHP helper script that performs session lookup using PHP's native APIs. The helper validates the session ID against a strict regular expression before loading any data:

php
#!/usr/local/hestia/php/bin/php
<?php
declare(strict_types=1);

function deny(string $error, int $code = 1): never {
    echo json_encode(
        ["ok" => false, "error" => $error],
        JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_THROW_ON_ERROR,
    ), PHP_EOL;
    exit($code);
}

if (!isset($argv[1]) || !is_string($argv[1])) {
    deny("missing session id");
}

$sessionId = $argv[1];
if ($sessionId === "" || preg_match('/^[A-Za-z0-9,-]+$/', $sessionId) !== 1) {
    deny("invalid session id");
}

$hestia = getenv("HESTIA");
if (!is_string($hestia) || $hestia === "") {
    deny("missing HESTIA env");
}

session_name("HESTIASID");
session_save_path($hestia . "/data/sessions");
session_id($sessionId);

Source: HestiaCP commit 854d71b

Detection Methods for CVE-2026-43633

Indicators of Compromise

  • Unexpected child processes of the Node.js web terminal binary, particularly shells running as root.
  • Anomalous or malformed values in HTTP headers commonly used to convey client identity, including X-Forwarded-For and proxy headers.
  • New or modified session files under /usr/local/hestia/data/sessions that contain non-printable or unusually structured payloads.
  • Outbound network connections initiated by the web terminal process to attacker-controlled infrastructure.

Detection Strategies

  • Monitor the HestiaCP web terminal process tree for shell invocations that do not correspond to legitimate authenticated administrator sessions.
  • Inspect web server access logs for unauthenticated requests carrying long, base64-like, or serialization-style payloads in HTTP headers.
  • Run authenticated configuration checks to identify HestiaCP instances at versions 1.9.0 through 1.9.4 with the web terminal feature enabled.

Monitoring Recommendations

  • Forward HestiaCP application, web terminal, and authentication logs to a centralized logging platform for retention and correlation.
  • Alert on any process spawned by the web terminal that executes outside an interactive PTY context.
  • Track file integrity on /usr/local/hestia/web/, the session directory, and the Node.js terminal binaries.

How to Mitigate CVE-2026-43633

Immediate Actions Required

  • Upgrade HestiaCP to a fixed release that incorporates commit 854d71b3c1737b0a0d0cc55c926008ffe1f6719b from pull request #5244.
  • Disable the web terminal feature on any instance that cannot be patched immediately.
  • Restrict network access to the HestiaCP management interface to trusted administrative IP ranges.
  • Rotate all administrative credentials and session secrets on hosts suspected of exposure.

Patch Information

The upstream fix replaces the in-process Node.js session parser with a hardened PHP helper (web-terminal-session-auth.php) that validates session IDs and uses PHP's native session APIs. Details are available in the HestiaCP GitHub issue, the pull request #5244, and the VulnCheck advisory. Additional analysis is published by Mercury ISS.

Workarounds

  • Disable the web terminal service until the patched version is deployed.
  • Place the HestiaCP web interface behind a VPN or reverse proxy that enforces authentication and strips untrusted client headers.
  • Configure upstream proxies to overwrite, rather than append to, identity headers such as X-Forwarded-For.
bash
# Disable the HestiaCP web terminal service as a temporary workaround
sudo systemctl stop hestia-web-terminal
sudo systemctl disable hestia-web-terminal

# Verify the service is no longer listening
sudo ss -tlnp | grep -i terminal

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechHestiacp

  • SeverityCRITICAL

  • CVSS Score9.5

  • EPSS Probability0.15%

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

  • GitHub Issue Discussion

  • GitHub Pull Request

  • Mercury ISS RCE Analysis

  • VulnCheck Advisory on RCE
  • Related CVEs
  • CVE-2026-43634: HestiaCP Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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