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

CVE-2026-30225: OliveTin Privilege Escalation Vulnerability

CVE-2026-30225 is a privilege escalation vulnerability in OliveTin that allows low-privileged users to bypass ACL restrictions and execute unauthorized shell commands. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30225 Overview

OliveTin is a web-based application that provides access to predefined shell commands through a user-friendly interface. CVE-2026-30225 is an authentication context confusion vulnerability in the RestartAction function that allows a low-privileged authenticated user to execute actions they are not permitted to run, resulting in privilege escalation.

The vulnerability stems from improper handling of authentication context when RestartAction constructs a new internal connect.Request. The synthetic request does not preserve the original caller's authentication headers or cookies, causing the authentication resolver to fall back to the guest user. If the guest account has broader permissions than the authenticated caller, this allows unauthorized command execution.

Critical Impact

Low-privileged users can bypass ACL restrictions and execute arbitrary configured shell actions, potentially compromising system integrity through unauthorized command execution.

Affected Products

  • OliveTin versions prior to 3000.11.1
  • OliveTin deployments with guest accounts having broader permissions than authenticated users
  • Web-accessible OliveTin instances with multi-user access control configurations

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-30225 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-30225

Vulnerability Analysis

This vulnerability is classified as CWE-250 (Execution with Unnecessary Privileges). The authentication context confusion occurs within the RestartAction function, which is responsible for restarting previously executed shell commands. When a user triggers this action, the function creates a new internal request object to call StartAction but fails to properly propagate the original user's authentication context.

The flaw exploits a design weakness in how OliveTin handles request chaining between internal API functions. The application assumes that internal requests should be treated with a default authentication context, but this assumption breaks the principle of least privilege when the default context (guest user) has elevated permissions compared to the actual caller.

Root Cause

The root cause lies in the RestartAction function's construction of synthetic connect.Request objects without preserving authentication state. When the function calls StartAction with this synthetic request, the authentication resolver cannot find valid credentials and defaults to the guest user identity. This creates a privilege escalation vector when:

  1. The guest user has been configured with broad action permissions
  2. A low-privileged authenticated user has restricted action permissions
  3. The authenticated user invokes RestartAction for an action they cannot directly execute

The authentication headers and cookies from the original HTTP request are not carried forward to the internal request, breaking the authentication chain.

Attack Vector

The attack is network-accessible and requires low privileges to execute. An attacker with a low-privileged OliveTin account can exploit this vulnerability by:

  1. Identifying shell actions that are permitted for the guest user but restricted for their own account
  2. Triggering the RestartAction endpoint for those restricted actions
  3. The synthetic internal request falls back to guest authentication
  4. The action executes with guest-level permissions, bypassing the attacker's ACL restrictions

This vulnerability requires no user interaction and can be exploited remotely. The attack complexity is low as it simply requires invoking an existing API endpoint with crafted parameters. The impact is primarily to integrity, as attackers can execute arbitrary configured shell commands beyond their authorization level.

Detection Methods for CVE-2026-30225

Indicators of Compromise

  • Unexpected execution of shell commands by users who should not have access to those actions
  • Log entries showing RestartAction calls followed by command executions under guest user context
  • Discrepancies between authenticated user sessions and the user context recorded for command executions
  • Audit trail gaps where commands executed do not match user permission profiles

Detection Strategies

  • Monitor OliveTin logs for authentication context mismatches between request initiators and command executors
  • Implement alerting on RestartAction API calls that result in elevated command executions
  • Review access control configurations to identify guest accounts with overly permissive action access
  • Deploy network monitoring to detect unusual patterns of RestartAction endpoint utilization

Monitoring Recommendations

  • Enable verbose logging in OliveTin to capture full authentication context for all action executions
  • Establish baseline metrics for normal RestartAction usage patterns per user
  • Configure SIEM rules to correlate user authentication events with subsequent command execution logs
  • Perform regular audits of guest user permissions against the principle of least privilege

How to Mitigate CVE-2026-30225

Immediate Actions Required

  • Upgrade OliveTin to version 3000.11.1 or later immediately
  • Review and restrict guest user permissions to the minimum required access
  • Audit current user permission configurations for overly permissive guest accounts
  • Consider temporarily disabling the RestartAction functionality if immediate patching is not possible

Patch Information

The vulnerability has been addressed in OliveTin version 3000.11.1. The patch ensures that authentication context is properly preserved when internal requests are constructed, preventing the fallback to guest user authentication. The fix is available through the official GitHub release.

For technical details about the fix, refer to the security commit which modifies how RestartAction handles authentication propagation to StartAction.

Additional information is available in the GitHub Security Advisory GHSA-p443-p7w5-2f7f.

Workarounds

  • Remove or significantly restrict guest user permissions to prevent privilege escalation
  • Implement network-level access controls to limit who can reach the OliveTin web interface
  • Disable the RestartAction functionality by removing relevant action configurations until patching is complete
  • Deploy a reverse proxy with additional authentication layers in front of OliveTin
bash
# Example: Restrict guest permissions in OliveTin configuration
# In config.yaml, ensure guest has minimal or no action access:
accessControlLists:
  - name: guest
    matchUsernames:
      - guest
    allowedActions: []  # Remove all action permissions for guest

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechOlivetin

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-250
  • Technical References
  • GitHub Release 3000.11.1
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-p443-p7w5-2f7f
  • Related CVEs
  • CVE-2026-32102: OliveTin Information Disclosure Flaw

  • CVE-2026-31817: OliveTin Path Traversal Vulnerability

  • CVE-2026-30223: OliveTin JWT Auth Bypass Vulnerability

  • CVE-2026-30224: OliveTin Auth Bypass 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