Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-41136

CVE-2026-41136: Free5gc AMF RCE Vulnerability

CVE-2026-41136 is a remote code execution flaw in Free5gc AMF affecting versions before 1.4.3. Attackers can exploit improper Content-Type handling to trigger uninitialized object processing. This article covers technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-41136 Overview

CVE-2026-41136 is an Input Validation Error vulnerability in free5GC AMF, the Access & Mobility Management Function component of the free5GC open-source 5G mobile core network project. Prior to version 1.4.3, the HTTPUEContextTransfer handler in internal/sbi/api_communication.go does not include a default case in the Content-Type switch statement. When a request arrives with an unsupported Content-Type, the deserialization step is silently skipped, err remains nil, and the processor is invoked with a completely uninitialized UeContextTransferRequest object.

Critical Impact

An attacker can send requests with unsupported Content-Type headers to bypass input validation and invoke the AMF processor with uninitialized data, potentially disrupting 5G network mobility management functions.

Affected Products

  • free5GC AMF versions prior to 1.4.3
  • free5GC free5gc (5G mobile core network)

Discovery Timeline

  • 2026-04-22 - CVE-2026-41136 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-41136

Vulnerability Analysis

This vulnerability stems from CWE-440 (Expected Behavior Violation) where the application fails to handle unexpected input conditions properly. The HTTPUEContextTransfer handler implements a switch statement to determine how to deserialize incoming requests based on the Content-Type header. However, the switch statement lacks a default case to handle unsupported or malformed Content-Type values.

When an attacker sends a request with an unexpected Content-Type header that doesn't match any of the defined cases, the deserialization logic is completely bypassed. The critical flaw is that the error variable (err) remains nil despite no valid deserialization occurring, which allows execution to continue with a UeContextTransferRequest object containing zero-initialized or undefined values.

This affects the integrity of 5G network operations as the AMF component is responsible for critical mobility management functions including UE (User Equipment) registration, connection management, and handover procedures.

Root Cause

The root cause is the absence of a default case in the Content-Type switch statement within the HTTPUEContextTransfer function located in internal/sbi/api_communication.go. In Go, switch statements without a default case silently fall through when no cases match, leaving the request object uninitialized while error handling assumes success.

This programming oversight allows the processor to operate on an empty or uninitialized UeContextTransferRequest struct, which violates the expected behavior of the API endpoint and can lead to undefined application behavior.

Attack Vector

The vulnerability is exploitable over the network without authentication. An attacker can craft HTTP requests to the AMF's SBI (Service-Based Interface) endpoint with an arbitrary or malformed Content-Type header value that doesn't match the expected types (such as application/json).

The attack does not require user interaction and can be executed remotely against exposed free5GC AMF instances. The attacker sends a request like:

POST /ue-context-transfer HTTP/1.1
Content-Type: text/invalid
Host: target-amf:8080

{malicious or empty payload}

Since no code examples are available from verified sources, refer to the GitHub Security Advisory for technical implementation details of the fix introduced in version 1.4.3.

Detection Methods for CVE-2026-41136

Indicators of Compromise

  • HTTP requests to AMF SBI endpoints with unusual or non-standard Content-Type headers
  • Log entries showing requests processed without proper deserialization
  • Anomalous UE context transfer operations with empty or default field values
  • Unexpected error responses or behavior from AMF mobility management functions

Detection Strategies

  • Monitor HTTP traffic to AMF SBI interfaces for requests with uncommon Content-Type headers
  • Implement application-layer logging to track deserialization success/failure states
  • Deploy network intrusion detection rules to flag requests with malformed Content-Type values targeting 5G core network components
  • Review AMF access logs for patterns of requests that bypass normal processing flows

Monitoring Recommendations

  • Enable verbose logging on free5GC AMF instances to capture incoming request headers
  • Implement Content-Type header validation at the load balancer or API gateway level
  • Set up alerts for requests to /ue-context-transfer endpoints with non-standard Content-Types
  • Monitor for increases in failed or anomalous UE context transfer operations

How to Mitigate CVE-2026-41136

Immediate Actions Required

  • Upgrade free5GC AMF to version 1.4.3 or later immediately
  • Review AMF logs for evidence of exploitation attempts using malformed Content-Type headers
  • Implement network-level filtering to restrict access to AMF SBI interfaces
  • Consider deploying a Web Application Firewall (WAF) to validate Content-Type headers before they reach the AMF

Patch Information

The vulnerability has been fixed in free5GC AMF version 1.4.3. The patch adds proper handling for unsupported Content-Type values by implementing a default case in the switch statement that returns an appropriate error response.

Update your free5GC AMF deployment by downloading the patched version from the official release. For complete details on the vulnerability and fix, refer to the GitHub Security Advisory GHSA-r99v-75p9-xqm5.

Workarounds

  • Deploy an API gateway or reverse proxy that strictly validates and filters Content-Type headers before forwarding requests to the AMF
  • Implement network segmentation to limit access to AMF SBI interfaces to trusted network components only
  • Use firewall rules to restrict incoming connections to the AMF service from untrusted sources
  • If upgrading is not immediately possible, consider temporarily restricting access to the affected /ue-context-transfer endpoint
bash
# Example: Nginx configuration to validate Content-Type headers
location /ue-context-transfer {
    if ($content_type !~ "^application/json") {
        return 415;
    }
    proxy_pass http://amf-backend:8080;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechFree5gc

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:P/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-440
  • Technical References
  • GitHub Release v1.4.3
  • Vendor Resources
  • GitHub Security Advisory GHSA-r99v-75p9-xqm5
  • Related CVEs
  • CVE-2026-5360: Free5GC Type Confusion RCE Vulnerability

  • CVE-2026-1975: Free5gc RCE Vulnerability

  • CVE-2026-40343: Free5gc UDR Fail-Open Handling Flaw

  • CVE-2026-41135: Free5gc Memory Leak DoS 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