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

CVE-2026-9136: MISP Auth Bypass Vulnerability

CVE-2026-9136 is an authentication bypass vulnerability in MISP's ShadowAttribute workflow that allows authenticated users to modify existing shadow attributes unauthorized. This article covers technical details, impact, and mitigations.

Published: May 21, 2026

CVE-2026-9136 Overview

CVE-2026-9136 is an Insecure Direct Object Reference [CWE-639] vulnerability in the Malware Information Sharing Platform (MISP) ShadowAttribute proposal creation workflow. The add action accepts user-controlled request data without stripping the id field before saving the record. The underlying framework treats a supplied primary key as an update instruction, so an authenticated user submitting a proposal can overwrite an existing ShadowAttribute record. This breaks the intended boundary between creating new proposals and modifying existing ones across event contexts. The issue is fixed in MISP 2.5.38.

Critical Impact

Authenticated users can modify shadow attribute proposals tied to events they should not be able to alter, and may expose or move proposal data across event contexts.

Affected Products

  • MISP (Malware Information Sharing Platform) versions prior to 2.5.38
  • ShadowAttribute proposal workflow within MISP
  • Deployments exposing the proposal add API endpoint to authenticated users

Discovery Timeline

  • 2026-05-20 - CVE-2026-9136 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-9136

Vulnerability Analysis

The vulnerability lives in the ShadowAttribute proposal creation logic in MISP. When a client submits a proposal, the controller passes the entire request body to the persistence layer without removing the id field. CakePHP-style ORM behavior interprets a populated primary key as an update directive rather than an insert. As a result, the add endpoint silently transforms into an update endpoint when the attacker supplies an id value.

An authenticated user with permission to submit proposals can target any existing ShadowAttribute record by guessing or enumerating its identifier. The update can rewrite proposal content and, depending on how relational fields are handled, shift the proposal between event contexts. This breaks the trust model that keeps proposals scoped to events a user is authorized to view or comment on.

Root Cause

The root cause is trust in a client-supplied primary key during object creation. The controller did not sanitize the incoming ShadowAttribute payload to remove the id field before invoking the save operation. The fix removes the id field from inbound data so the endpoint always creates a new record. See the MISP commit 49911b1 for the patch.

Attack Vector

Exploitation requires network access to the MISP API and a valid account with proposal submission rights. The attacker issues a POST request to the ShadowAttribute add endpoint and includes an id parameter referencing a target proposal. The server processes the request as an update, overwriting the target record with attacker-controlled values. No user interaction or elevated privileges beyond a basic authenticated role are required.

No verified public proof-of-concept code is available. Refer to the MISP commit for the precise data flow and the corrective change.

Detection Methods for CVE-2026-9136

Indicators of Compromise

  • POST requests to the ShadowAttribute add endpoint that contain an id field in the request body.
  • ShadowAttribute records with modified timestamps that diverge from their created timestamps without a corresponding edit action in audit logs.
  • Proposals whose event_id or attribute_id references events the submitting user lacks permission to view.

Detection Strategies

  • Inspect MISP application logs and reverse proxy access logs for proposal creation requests containing primary key parameters.
  • Compare proposal author identities against the owning event's authorized contributor list to surface cross-context modifications.
  • Run database queries that flag ShadowAttribute rows updated by users outside the parent event's organization scope.

Monitoring Recommendations

  • Forward MISP audit logs and API access logs to a centralized analytics platform for retrospective queries.
  • Alert on bulk enumeration patterns against the ShadowAttribute API such as sequential id values in successive requests.
  • Track baseline rates of proposal creation per user and trigger review when modification volume exceeds expected thresholds.

How to Mitigate CVE-2026-9136

Immediate Actions Required

  • Upgrade MISP to version 2.5.38 or later, which removes the id field from incoming ShadowAttribute payloads.
  • Audit historical proposal data for unauthorized modifications by correlating ShadowAttribute updates with submitter permissions.
  • Review and tighten role assignments so only required accounts retain proposal submission rights.

Patch Information

The fix is included in MISP 2.5.38. The patch strips the id field from inbound ShadowAttribute request data before the save call, ensuring the add action only creates new records. The change is published in MISP commit 49911b1d4b6e4517d803e50e3d980aaa4d37c16d.

Workarounds

  • Restrict access to the ShadowAttribute proposal API to trusted user groups until patching is complete.
  • Add a reverse proxy or web application firewall rule that rejects requests to the proposal add endpoint when the body contains an id field.
  • Increase audit logging verbosity for proposal creation events to enable rapid forensic review.
bash
# Example WAF rule snippet to block id field in ShadowAttribute proposal add requests
SecRule REQUEST_URI "@contains /shadow_attributes/add" \
  "chain,phase:2,deny,status:400,id:1009136,msg:'Block client-supplied id in ShadowAttribute add'"
  SecRule REQUEST_BODY "@rx \"id\"\s*:\s*\"?\d+" "t:none"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMisp

  • SeverityHIGH

  • CVSS Score8.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:H/VA:N/SC:N/SI:H/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
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • GitHub MISP Commit Update
  • Related CVEs
  • CVE-2026-9084: MISP OIDC Auth Bypass Vulnerability

  • CVE-2026-39962: MISP Auth Bypass Vulnerability

  • CVE-2024-25675: MISP Auth Bypass Vulnerability

  • CVE-2026-44381: MISP Platform SQL Injection 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