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

CVE-2026-29782: OpenSTAManager RCE Vulnerability

CVE-2026-29782 is a remote code execution flaw in OpenSTAManager caused by unsafe deserialization in oauth2.php. Attackers can exploit this unauthenticated endpoint to execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-29782 Overview

CVE-2026-29782 is an insecure deserialization vulnerability in OpenSTAManager, an open source management software used for technical assistance and invoicing. Prior to version 2.10.2, the oauth2.php file contains an unauthenticated endpoint that improperly deserializes attacker-controlled data, potentially enabling remote code execution or other malicious activities.

Critical Impact

Unauthenticated attackers can exploit the insecure deserialization in the OAuth2 flow to potentially execute arbitrary code or manipulate application state by crafting malicious serialized objects.

Affected Products

  • OpenSTAManager versions prior to 2.10.2

Discovery Timeline

  • 2026-04-02 - CVE CVE-2026-29782 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-29782

Vulnerability Analysis

This vulnerability stems from a classic insecure deserialization pattern (CWE-502) in PHP. The oauth2.php endpoint is configured with $skip_permissions = true, making it publicly accessible without authentication. During the OAuth2 configuration flow, the application retrieves a record from the zz_oauth2 database table using the attacker-controlled state GET parameter, then calls PHP's unserialize() function on the access_token field without any class restriction or type validation.

The lack of class restrictions in the deserialization process is particularly dangerous because it allows an attacker to instantiate arbitrary PHP objects. If gadget chains exist within the application's loaded classes (common in applications using frameworks or libraries), the attacker can leverage these to achieve remote code execution, file operations, or other malicious actions.

Root Cause

The root cause is the unrestricted use of PHP's unserialize() function on user-controllable data without implementing any safe deserialization practices. The oauth2.php file skips permission checks entirely, allowing unauthenticated access, and then deserializes the access_token field from a database record that can be influenced through the attacker-controlled state parameter. This combination of unauthenticated access and unsafe deserialization creates a direct attack path.

Attack Vector

The attack is network-based and can be executed by any remote attacker without authentication. An attacker would craft a malicious HTTP request to the oauth2.php endpoint with a specially crafted state parameter. By manipulating the database record associated with this state value (or if the application allows creation of OAuth2 records), the attacker can inject a malicious serialized PHP object into the access_token field. When the endpoint processes the request and deserializes this field, the malicious object is instantiated.

The exploitation flow typically involves:

  1. Identifying or creating a record in the zz_oauth2 table with a known state value
  2. Crafting a serialized PHP object payload that leverages available gadget chains
  3. Sending a request to oauth2.php with the corresponding state parameter
  4. The application deserializes the malicious payload, triggering the gadget chain

For detailed technical information about the vulnerability, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-29782

Indicators of Compromise

  • Unusual HTTP requests to /oauth2.php with suspicious or encoded state parameters
  • Web server logs showing repeated access to OAuth2 endpoints from unknown sources
  • Database queries to the zz_oauth2 table with unexpected or malformed data in access_token fields
  • Unexpected PHP object instantiation or class loading in application logs

Detection Strategies

  • Monitor web application firewall logs for requests to oauth2.php containing serialized PHP object patterns (e.g., O:, a:, s: prefixes in parameters)
  • Implement intrusion detection rules to flag suspicious deserialization patterns in HTTP traffic
  • Review database records in zz_oauth2 for anomalous or overly long access_token values that may indicate injection attempts
  • Enable PHP error logging to capture failed deserialization attempts or unexpected class loading

Monitoring Recommendations

  • Configure centralized logging for all web application access, particularly OAuth2-related endpoints
  • Set up alerts for any authenticated or unauthenticated access to oauth2.php from unexpected IP ranges
  • Periodically audit the zz_oauth2 database table for suspicious entries
  • Deploy endpoint detection and response (EDR) solutions to monitor for post-exploitation activity if the vulnerability is exploited

How to Mitigate CVE-2026-29782

Immediate Actions Required

  • Upgrade OpenSTAManager to version 2.10.2 or later immediately
  • If immediate upgrade is not possible, restrict access to the oauth2.php endpoint at the web server level
  • Review existing records in the zz_oauth2 database table for signs of tampering or malicious content
  • Monitor systems for any indicators of compromise related to this vulnerability

Patch Information

The vulnerability has been patched in OpenSTAManager version 2.10.2. The fix is available through the official release:

  • GitHub Release Version 2.10.2
  • Patch Commit

Organizations should apply this update as soon as possible following standard change management procedures.

Workarounds

  • Block or restrict access to oauth2.php using web server configuration (e.g., .htaccess, nginx location blocks) until the patch can be applied
  • Implement a web application firewall (WAF) rule to block requests containing serialized PHP object patterns in the state parameter
  • If OAuth2 functionality is not required, consider disabling or removing the oauth2.php endpoint entirely
  • Apply network segmentation to limit exposure of the OpenSTAManager application to trusted networks only
bash
# Example Apache .htaccess configuration to restrict oauth2.php access
<Files "oauth2.php">
    Require ip 192.168.1.0/24
    # Or deny all access if OAuth2 is not needed:
    # Require all denied
</Files>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenstamanager

  • SeverityHIGH

  • CVSS Score7.2

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

  • GitHub Release Version 2.10.2

  • GitHub Security Advisory GHSA-whv5-4q2f-q68g
  • Related CVEs
  • CVE-2026-35470: OpenSTAManager SQL Injection Vulnerability

  • CVE-2026-35168: OpenSTAManager SQL Injection Vulnerability

  • CVE-2026-28805: OpenSTAManager SQL Injection Vulnerability

  • CVE-2025-69213: OpenSTAManager SQL Injection 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