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-2025-64099

CVE-2025-64099: OpenAM Authentication Bypass Vulnerability

CVE-2025-64099 is an authentication bypass flaw in Open Access Management (OpenAM) that lets attackers inject custom claims into id_token and user_info, enabling identity spoofing. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 11, 2026

CVE-2025-64099 Overview

CVE-2025-64099 is a claims parameter injection vulnerability in Open Identity Platform's Open Access Management (OpenAM), an open-source access management solution. The flaw affects all versions prior to 16.0.0 when the claims_parameter_supported configuration option is enabled. Attackers can abuse the oidc-claims-extension.groovy script to inject arbitrary values into claims returned in id_token or user_info responses. This enables identity spoofing against any relying party that trusts OpenID Connect claim values such as email for user identification. The vendor released version 16.0.0 to remediate the issue.

Critical Impact

Unauthenticated attackers can inject arbitrary claim values into OpenID Connect tokens and impersonate any user against downstream clients that rely on those claims for identity.

Affected Products

  • Open Identity Platform OpenAM versions prior to 16.0.0
  • OpenAM deployments with claims_parameter_supported enabled
  • OpenID Connect relying parties consuming OpenAM-issued id_token or user_info claims

Discovery Timeline

  • 2025-11-12 - CVE-2025-64099 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-64099

Vulnerability Analysis

The vulnerability is classified as [CWE-74] Improper Neutralization of Special Elements in Output Used by a Downstream Component (Injection). It resides in OpenAM's OpenID Connect authorize flow when claims_parameter_supported is activated.

The OpenID Connect specification permits clients to request specific claims by passing a JSON claims parameter to the authorize endpoint. In vulnerable OpenAM versions, the oidc-claims-extension.groovy script processes this JSON without enforcing constraints on the values returned. An attacker can supply attacker-controlled values that overwrite the claims contained in the issued id_token and user_info responses.

Downstream applications that map a claim such as email or sub to an internal user identity will accept the forged value. This produces full identity assumption against any client trusting OpenAM as an identity provider.

Root Cause

The Groovy claims extension script merges client-supplied claim values from the authorize request into the issued tokens without distinguishing between identity-provider-asserted values and request-supplied values. The trust boundary between the relying party request and the identity provider's own user store is not enforced.

Attack Vector

The attack is network-reachable, requires no authentication, and no user interaction. An attacker initiates an OpenID Connect authorization request to a vulnerable OpenAM instance. The request includes a claims parameter containing a JSON object that specifies the desired values for claims such as email, preferred_username, or sub. OpenAM returns an id_token and user_info response containing the attacker-chosen values. The attacker presents these tokens to any client that derives user identity from the manipulated claim. See the GitHub Security Advisory for the vendor description.

Detection Methods for CVE-2025-64099

Indicators of Compromise

  • Authorize requests to OpenAM containing a claims query parameter with explicit value fields for sensitive claims such as email, sub, or preferred_username
  • Issued id_token payloads where claim values do not match the authenticated user's profile in the OpenAM identity store
  • Application logs showing successful logins for accounts that did not authenticate directly against OpenAM during the corresponding session
  • Multiple sessions for distinct downstream identities tied to the same upstream OpenAM authentication event

Detection Strategies

  • Parse OpenAM access logs for /oauth2/authorize requests containing the claims= parameter and decode the embedded JSON for inspection
  • Compare claim values in issued tokens against the authoritative user directory and alert on mismatches
  • Inventory all OpenAM realms and check whether claims_parameter_supported is set to true in OIDC provider configuration

Monitoring Recommendations

  • Forward OpenAM authentication, authorization, and token issuance events to a centralized log platform for correlation with downstream application sign-in events
  • Monitor for anomalous spikes in authorize requests containing the claims parameter from a single source IP or client_id
  • Alert when issued id_token claims diverge from the subject's stored attributes in the user directory

How to Mitigate CVE-2025-64099

Immediate Actions Required

  • Upgrade Open Identity Platform OpenAM to version 16.0.0 or later, which contains the vendor fix
  • If immediate upgrade is not possible, disable claims_parameter_supported in the OIDC provider configuration for every affected realm
  • Audit downstream relying parties to identify which applications rely on OpenAM claims such as email or sub for identity decisions
  • Invalidate active OAuth and OIDC sessions issued by vulnerable OpenAM instances after remediation

Patch Information

Open Identity Platform released OpenAM version 16.0.0, which corrects the claims handling logic in oidc-claims-extension.groovy. Patch details and source changes are documented in the GitHub Security Advisory GHSA-39hr-239p-fhqc.

Workarounds

  • Set claims_parameter_supported to false in the OIDC provider configuration until the upgrade is applied
  • Modify the oidc-claims-extension.groovy script to ignore request-supplied claim values and source all identity claims from the authoritative user profile
  • Configure relying parties to validate critical claims against an out-of-band source rather than trusting OpenAM-issued values directly
bash
# Disable the claims parameter on the OIDC provider in OpenAM
# (apply per realm via the OpenAM admin console or ssoadm)
ssoadm set-attr-defs \
  -s OAuth2Provider \
  -t organization \
  -e <realm> \
  -a claims_parameter_supported=false

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenam

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.06%

  • 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:U/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-74
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33439: OpenAM RCE 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