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

CVE-2026-33192: Free5gc Udm Information Disclosure Flaw

CVE-2026-33192 is an information disclosure vulnerability in Free5gc Udm that exposes internal error handling behavior through improper HTTP error code conversion. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33192 Overview

CVE-2026-33192 is an Information Exposure vulnerability (CWE-209) affecting Free5GC, an open-source Linux Foundation project for 5th generation (5G) mobile core networks. The vulnerability exists in the Unified Data Management (UDM) component, which incorrectly converts downstream 400 Bad Request responses from the Unified Data Repository (UDR) into 500 Internal Server Error responses when handling PATCH requests with an empty supi path parameter. Additionally, the UDM incorrectly translates the PATCH method to PUT when forwarding requests to the UDR, indicating a deeper architectural issue in request handling.

Critical Impact

This vulnerability leaks internal error handling behavior through improper HTTP status code translation, making it difficult for clients to distinguish between client-side errors and server-side failures. Attackers could leverage this information disclosure to fingerprint internal architecture and potentially identify additional attack surfaces in 5G core network deployments.

Affected Products

  • Free5GC UDM versions prior to 1.4.2

Discovery Timeline

  • March 20, 2026 - CVE-2026-33192 published to NVD
  • March 23, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33192

Vulnerability Analysis

The vulnerability stems from improper error handling and HTTP method translation within the Free5GC UDM component. When the UDM receives a PATCH request with an empty supi (Subscription Permanent Identifier) path parameter, it forwards this malformed request to the UDR. The UDR correctly responds with a 400 Bad Request status, indicating a client-side error. However, the UDM incorrectly transforms this response into a 500 Internal Server Error before returning it to the client.

This behavior violates HTTP semantics where 4xx errors indicate client-side issues and 5xx errors indicate server-side failures. The information leakage allows attackers to infer details about the internal architecture, including the presence of downstream services and their error handling patterns. In 5G network deployments, this could expose sensitive architectural information about the core network infrastructure.

Root Cause

The root cause involves two distinct issues in the UDM request handling logic:

  1. Improper HTTP Status Code Translation: The UDM fails to properly propagate 400 Bad Request responses from the UDR, instead converting them to 500 Internal Server Error responses. This masks the true nature of the error and leaks information about internal error handling mechanisms.

  2. Incorrect HTTP Method Conversion: When forwarding requests to the UDR, the UDM incorrectly translates PATCH requests to PUT requests. This indicates a fundamental architectural flaw in the request routing logic that could lead to unintended data modifications or additional error conditions.

Attack Vector

The vulnerability is exploitable via network access without requiring authentication or user interaction. An attacker can send specially crafted PATCH requests to the UDM with empty or malformed supi path parameters. By analyzing the HTTP response status codes and error messages, attackers can:

  1. Fingerprint the internal architecture of the 5G core network
  2. Identify the presence and behavior of downstream services (UDR)
  3. Map error handling patterns to identify additional vulnerabilities
  4. Distinguish between different failure modes to refine attack strategies

The attack requires network access to the UDM service endpoint, which in production 5G deployments should be restricted to authorized network functions but may be exposed in improperly configured environments.

Detection Methods for CVE-2026-33192

Indicators of Compromise

  • Unusual patterns of HTTP 500 errors in UDM logs that correspond to malformed PATCH requests with empty supi parameters
  • Reconnaissance activity involving sequential requests to the UDM with variations of empty or invalid path parameters
  • Log entries showing discrepancies between incoming PATCH requests and outgoing PUT requests to the UDR
  • Increased error rates on the UDM-to-UDR communication path without corresponding client-side error indicators

Detection Strategies

  • Monitor UDM access logs for PATCH requests with empty or missing supi path parameters
  • Implement correlation rules to detect patterns of requests designed to trigger error responses for fingerprinting purposes
  • Deploy application-layer monitoring to track HTTP method translations between UDM and UDR communications
  • Analyze response code patterns to identify anomalous 500 error spikes that may indicate exploitation attempts

Monitoring Recommendations

  • Enable detailed logging on the UDM component to capture request/response patterns including path parameters and HTTP methods
  • Configure alerting for unusual volumes of 500 Internal Server Error responses from the UDM
  • Monitor inter-service communication between UDM and UDR for HTTP method inconsistencies
  • Implement log aggregation and analysis across all Free5GC network functions to correlate potential reconnaissance activities

How to Mitigate CVE-2026-33192

Immediate Actions Required

  • Upgrade Free5GC UDM to version 1.4.2 or later immediately
  • Review network segmentation to ensure UDM endpoints are not exposed to untrusted networks
  • Implement input validation at the API gateway level to reject requests with empty supi parameters before they reach the UDM
  • Enable comprehensive logging to detect any exploitation attempts before patching

Patch Information

The Free5GC project has released version 1.4.2 which addresses this vulnerability. The fix corrects the HTTP status code propagation logic in the UDM component and resolves the incorrect PATCH-to-PUT method translation issue.

For detailed patch information, refer to:

  • GitHub Security Advisory GHSA-5rvc-5cwx-g5x8
  • GitHub Pull Request #79
  • GitHub Issue #784

Workarounds

  • Deploy an API gateway or reverse proxy in front of the UDM to validate incoming requests and reject those with empty or missing supi parameters
  • Implement network-level access controls to restrict UDM access to authorized network functions only
  • Configure custom error handling at the load balancer level to normalize error responses and prevent information leakage
  • Consider temporarily disabling PATCH operations on affected endpoints if operationally feasible until patching is complete
bash
# Example: nginx reverse proxy configuration to reject empty supi parameters
location ~ ^/nudm-sdm/v1/([^/]+)/nssai$ {
    if ($1 = "") {
        return 400 '{"error": "Invalid supi parameter"}';
    }
    proxy_pass http://udm-backend;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechFree5gc

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/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-209
  • Vendor Resources
  • GitHub Issue Report

  • GitHub Security Advisory

  • GitHub Pull Request
  • Related CVEs
  • CVE-2026-33065: Free5gc Udm Information Disclosure Bug

  • CVE-2025-69251: Free5gc UDM Information Disclosure Flaw

  • CVE-2025-69250: Free5gc UDM Information Disclosure Issue

  • CVE-2026-27642: Free5gc UDM Information Disclosure Flaw
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