The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-33439

CVE-2026-33439: OpenAM RCE Vulnerability

CVE-2026-33439 is a pre-authentication remote code execution flaw in OpenAM via unsafe Java deserialization. Attackers can execute arbitrary commands without authentication. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-33439 Overview

CVE-2026-33439 is a critical pre-authentication Remote Code Execution (RCE) vulnerability affecting OpenIdentityPlatform OpenAM, an open-source access management solution. The vulnerability exists due to unsafe Java deserialization of the jato.clientSession HTTP parameter, allowing unauthenticated attackers to execute arbitrary commands on the server. This vulnerability notably bypasses the WhitelistObjectInputStream mitigation that was previously applied to the jato.pageSession parameter after CVE-2021-35464, representing a dangerous regression in the application's security posture.

Critical Impact

Unauthenticated attackers can achieve full remote code execution on OpenAM servers by sending crafted serialized Java objects, potentially leading to complete system compromise without requiring any credentials.

Affected Products

  • OpenIdentityPlatform OpenAM versions prior to 16.0.6
  • JATO ViewBean endpoints with JSPs containing <jato:form> tags
  • Password Reset pages and similar form-based endpoints

Discovery Timeline

  • 2026-04-07 - CVE-2026-33439 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-33439

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data), a well-known class of security flaws that can lead to severe consequences including remote code execution. The vulnerability is particularly dangerous because it occurs at the pre-authentication stage, meaning attackers do not need any valid credentials to exploit it.

The flaw exists in how OpenAM processes the jato.clientSession HTTP parameter. While the developers previously implemented protections for the similar jato.pageSession parameter following CVE-2021-35464, the jato.clientSession parameter was left unprotected, creating an exploitable attack surface. This oversight allows attackers to submit malicious serialized Java objects that are deserialized without proper validation.

Root Cause

The root cause is the absence of deserialization safeguards on the jato.clientSession parameter. When OpenAM processes incoming HTTP requests to JATO ViewBean endpoints, it deserializes the jato.clientSession parameter value directly without applying the WhitelistObjectInputStream protection that filters dangerous classes. This allows attackers to include malicious gadget chains in the serialized data that execute arbitrary code upon deserialization.

Attack Vector

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

  1. Identifying a JATO ViewBean endpoint whose JSP contains <jato:form> tags (such as Password Reset pages)
  2. Crafting a malicious serialized Java object containing a gadget chain (commonly using tools like ysoserial)
  3. Sending the serialized payload as either a GET or POST parameter named jato.clientSession
  4. Upon receipt, the server deserializes the object, triggering the embedded gadget chain and executing arbitrary commands

The exploitation does not require any authentication, making it accessible to any attacker who can reach the OpenAM server over the network. Common targets include the Password Reset functionality which inherently must be accessible to unauthenticated users.

Detection Methods for CVE-2026-33439

Indicators of Compromise

  • Unusual HTTP requests to JATO ViewBean endpoints containing Base64-encoded or binary data in the jato.clientSession parameter
  • Unexpected process spawning or command execution originating from the Java/OpenAM process
  • Network connections to unknown external hosts initiated by the application server
  • Presence of web shells or unauthorized files in the application directory

Detection Strategies

  • Deploy web application firewall (WAF) rules to inspect and block suspicious serialized Java objects in HTTP parameters
  • Monitor for known Java deserialization gadget chain signatures in HTTP traffic (e.g., ysoserial payloads)
  • Implement application-level logging to capture and alert on jato.clientSession parameter usage
  • Utilize endpoint detection and response (EDR) solutions to detect anomalous process behavior from Java applications

Monitoring Recommendations

  • Enable detailed access logging on OpenAM servers and forward logs to a SIEM for analysis
  • Set up alerts for POST requests containing binary or unusually long parameter values to form-based endpoints
  • Monitor system integrity on OpenAM servers to detect unauthorized file modifications
  • Implement network segmentation monitoring to detect unexpected outbound connections from application servers

How to Mitigate CVE-2026-33439

Immediate Actions Required

  • Upgrade OpenIdentityPlatform OpenAM to version 16.0.6 or later immediately
  • If immediate patching is not possible, restrict network access to OpenAM administrative and form-based endpoints
  • Implement WAF rules to block or sanitize the jato.clientSession parameter
  • Review server logs for any signs of exploitation attempts

Patch Information

The vulnerability is fixed in OpenAM version 16.0.6. Organizations should upgrade to this version or later as the primary remediation measure. The patch extends the WhitelistObjectInputStream deserialization protections to cover the jato.clientSession parameter, preventing malicious object deserialization.

For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or WAF to filter requests containing the jato.clientSession parameter
  • Temporarily disable or restrict access to endpoints with <jato:form> JSP tags if they are not business-critical
  • Implement network-level access controls to limit which systems can reach OpenAM endpoints
  • Consider deploying Java agent-based runtime application self-protection (RASP) solutions to block deserialization attacks
bash
# Example: Block jato.clientSession parameter using ModSecurity WAF rule
SecRule ARGS:jato.clientSession "@rx .*" \
    "id:100001,phase:2,deny,status:403,msg:'Blocked potential OpenAM deserialization attack via jato.clientSession'"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenam

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.10%

  • 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: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 Security Advisory
  • Related CVEs
  • CVE-2025-64099: OpenAM Authentication 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