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

CVE-2026-44379: MISP UUID Validation Vulnerability

CVE-2026-44379 is a UUID validation flaw in MISP threat intelligence platform that allows malformed UUID values in Collections, causing integrity issues. This article covers technical details, affected versions, and mitigations.

Published: May 14, 2026

CVE-2026-44379 Overview

CVE-2026-44379 is an input validation vulnerability in MISP, the open source threat intelligence and sharing platform. Prior to version 2.5.37, MISP Collections did not enforce RFC 4122 Universally Unique Identifier (UUID) validation on the uuid field. Authenticated users with permission to create or modify Collection records could submit malformed UUID values. This may cause integrity issues or unexpected behaviour in code paths that assume Collection UUIDs are valid identifiers. The vulnerability is tracked under [CWE-20] Improper Input Validation and is fixed in MISP 2.5.37.

Critical Impact

Authenticated MISP users can corrupt Collection record integrity by submitting non-RFC 4122 UUID values, undermining downstream code paths that rely on UUID well-formedness.

Affected Products

  • MISP versions prior to 2.5.37
  • MISP Collections feature (uuid field handling)
  • Deployments that allow user creation or modification of Collection records

Discovery Timeline

  • 2026-05-13 - CVE-2026-44379 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44379

Vulnerability Analysis

The flaw resides in the MISP Collections feature, which exposes a uuid field on Collection records. The application accepted user-supplied values into this field without verifying conformance to RFC 4122. As a result, malformed UUIDs persisted in the database alongside well-formed identifiers.

MISP code paths that consume Collection UUIDs assume the values conform to a fixed 8-4-4-4-12 hexadecimal format. When a malformed UUID is encountered, downstream logic can return inconsistent results, fail lookups, or produce integrity errors during synchronization, export, and correlation operations. The issue affects data integrity rather than confidentiality or availability.

Root Cause

The root cause is missing server-side validation on the uuid attribute of the Collection model. The Collection controller did not invoke a UUID format check before persisting records. The fix, applied in commit f8b20358c3cd8fd3d784452901876f2db0acbf05, adds explicit RFC 4122 validation so that non-conforming values are rejected at the API and form layer.

Attack Vector

Exploitation requires an authenticated MISP account with privileges to create or modify Collection records. An attacker submits a Collection create or update request with a crafted uuid value that violates RFC 4122 structure. The malformed identifier is stored and later consumed by features that expect a valid UUID, producing integrity issues across affected Collection-aware workflows. No user interaction or elevated privileges beyond Collection write access are required. See the GitHub Security Advisory GHSA-jrvj-84mg-8f29 for upstream technical details.

Detection Methods for CVE-2026-44379

Indicators of Compromise

  • Collection records whose uuid column does not match the RFC 4122 regex ^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{4}-[0-9a-f]{12}$.
  • API audit log entries showing POST or PUT requests to Collection endpoints with non-standard uuid payload values.
  • Synchronization or correlation errors referencing Collection identifiers that fail UUID parsing.

Detection Strategies

  • Run a database query over the collections table to enumerate records with malformed uuid values and review their creation metadata.
  • Inspect MISP application logs for Collection create or update operations performed by users with write permissions on Collection objects.
  • Compare Collection UUIDs across synchronized MISP instances to detect divergence introduced by malformed identifiers.

Monitoring Recommendations

  • Enable verbose audit logging on MISP Collection endpoints and forward events to a centralized log platform for review.
  • Alert on any Collection record creation by accounts that historically have not used the Collections feature.
  • Track the MISP version banner across deployments to confirm all instances are running 2.5.37 or later.

How to Mitigate CVE-2026-44379

Immediate Actions Required

  • Upgrade all MISP instances to version 2.5.37 or later as published in the upstream commit.
  • Audit existing Collection records and remove or correct entries with malformed UUIDs before resuming synchronization.
  • Review user permissions and revoke Collection write access from accounts that do not require it.

Patch Information

The MISP maintainers fixed CVE-2026-44379 in release 2.5.37. The patch enforces RFC 4122 UUID validation on the Collection uuid field at the model layer, rejecting malformed values during create and update operations. Operators should apply the official update from the MISP project repository and restart the application service after deployment.

Workarounds

  • Restrict Collection create and modify permissions to a small set of trusted administrators until the patch is applied.
  • Apply a temporary database constraint or trigger that rejects non-RFC 4122 values inserted into the Collections uuid column.
  • Place a reverse proxy rule in front of the MISP API that validates uuid parameters on Collection endpoints against the canonical UUID format.
bash
# Verify MISP version and pull the fixed release
cd /var/www/MISP
sudo -u www-data git fetch --tags
sudo -u www-data git checkout v2.5.37
sudo -u www-data git submodule update --init --recursive
sudo systemctl restart apache2

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechMisp

  • SeverityMEDIUM

  • CVSS Score5.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • GitHub MISP Commit Change

  • GitHub Security Advisory GHSA-jrvj-84mg-8f29
  • Related CVEs
  • CVE-2026-44381: MISP Platform SQL Injection Vulnerability

  • CVE-2026-44380: MISP Privilege Escalation Vulnerability

  • CVE-2026-44363: MISP Modules SSRF Vulnerability

  • CVE-2026-39962: MISP 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