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
    • 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-32937

CVE-2026-32937: free5GC CHF DoS Vulnerability

CVE-2026-32937 is a denial of service flaw in free5GC CHF that allows authenticated attackers to trigger server-side panics. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-32937 Overview

CVE-2026-32937 is an out-of-bounds slice access vulnerability affecting free5GC, an open source 5G core network implementation. The vulnerability exists in the free5GC CHF (Charging Function) component's nchf-convergedcharging service prior to version 1.2.2. An authenticated attacker can send a specially crafted request to the recharge endpoint that triggers a server-side panic due to improper array bounds validation, leading to denial of service conditions.

The vulnerability resides in the github.com/free5gc/chf/internal/sbi.(*Server).RechargePut(...) function, where insufficient validation of input parameters allows out-of-range slice access. While the Gin framework's recovery middleware typically converts such panics into HTTP 500 responses, the vulnerable code path remains exploitable for repeated denial of service attacks.

Critical Impact

Authenticated attackers can repeatedly trigger server-side panics in the CHF recharge service, degrading 5G core network charging functionality and potentially causing complete service disruption in deployments without adequate panic recovery mechanisms.

Affected Products

  • free5GC CHF (Charging Function) versions prior to 1.2.2
  • free5GC 5G core network deployments using the vulnerable CHF component
  • Systems exposing the nchf-convergedcharging SBI interface to untrusted network functions

Discovery Timeline

  • 2026-03-20 - CVE-2026-32937 published to NVD
  • 2026-03-20 - Last updated in NVD database

Technical Details for CVE-2026-32937

Vulnerability Analysis

This vulnerability is classified under CWE-129 (Improper Validation of Array Index), which occurs when the software uses untrusted input to access an array element without properly validating that the index falls within valid boundaries. In the context of Go programming, this manifests as an out-of-bounds slice access that triggers a runtime panic.

The vulnerable code path is accessible through authenticated requests to the PUT /nchf-convergedcharging/v3/recharging/:ueId?ratingGroup=... endpoint. When an attacker provides a malicious ratingGroup parameter value, the application attempts to access a slice element at an invalid index position. Go's runtime detects this boundary violation and triggers a panic, disrupting normal service operation.

In deployments utilizing Gin's default recovery middleware, the panic is caught and converted to an HTTP 500 Internal Server Error response, preventing complete process termination. However, this recovery mechanism does not prevent repeated exploitation—attackers can continuously trigger panics to degrade recharge functionality, generate excessive error logs, and potentially exhaust system resources.

Root Cause

The root cause is improper validation of array index input in the RechargePut handler function within the CHF SBI (Service-Based Interface) implementation. The code fails to verify that the ratingGroup parameter falls within the valid range of the target slice before attempting access. This missing bounds check allows authenticated callers to specify arbitrary index values that exceed the slice capacity.

The vulnerability follows a classic pattern where user-controlled input is used directly as an array/slice index without proper sanitization, resulting in CWE-129. The fix involves adding proper bounds validation before any slice access operations.

Attack Vector

The attack is network-based and requires low-privilege authentication as a valid Network Function (NF) caller. Exploitation follows this pattern:

  1. The attacker establishes an authenticated session with the CHF's SBI interface
  2. A PUT request is crafted targeting /nchf-convergedcharging/v3/recharging/:ueId with a malicious ratingGroup query parameter
  3. The ratingGroup value is set to an index that exceeds the bounds of the internal slice structure
  4. The RechargePut handler attempts to access the slice at the invalid index
  5. Go runtime detects the out-of-bounds access and triggers a panic
  6. Depending on deployment configuration, this either results in HTTP 500 (with recovery) or service crash (without recovery)

The vulnerability exploits improper bounds validation in the github.com/free5gc/chf/internal/sbi.(*Server).RechargePut(...) function. When a malicious ratingGroup parameter is supplied to the recharge endpoint, the code attempts to access a slice element without first verifying the index is within valid bounds. This triggers a Go runtime panic that disrupts service availability. For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-32937

Indicators of Compromise

  • Repeated HTTP 500 responses from the /nchf-convergedcharging/v3/recharging/ endpoint with panic-related error messages in application logs
  • Log entries containing runtime error: index out of range in conjunction with the RechargePut function
  • Unusual volume of PUT requests to the recharge endpoint from a single source or with abnormal ratingGroup parameter values
  • CHF service restarts or availability interruptions correlated with specific API traffic patterns

Detection Strategies

  • Implement log monitoring for Go runtime panic messages specifically in the CHF component, filtering for index out of range errors in the sbi.(*Server).RechargePut call stack
  • Deploy application-layer firewalls to inspect and validate ratingGroup query parameters on the nchf-convergedcharging recharge endpoints
  • Configure alerting on elevated HTTP 500 response rates from the CHF service that exceed baseline thresholds
  • Monitor for authentication patterns showing repeated failed or suspicious requests to charging-related endpoints

Monitoring Recommendations

  • Enable detailed request logging for all nchf-convergedcharging API calls including full query parameters
  • Implement rate limiting metrics collection to identify potential DoS exploitation attempts
  • Configure uptime monitoring and automatic restart alerting for the CHF service component
  • Establish baseline metrics for recharge endpoint response times and error rates to detect anomalies

How to Mitigate CVE-2026-32937

Immediate Actions Required

  • Upgrade free5GC CHF to version 1.2.2 or later which contains the security patch
  • Restrict access to the nchf-convergedcharging recharge endpoint to strictly trusted NF callers only using network segmentation
  • Apply rate limiting and network ACLs in front of the CHF SBI interface to reduce repeated panic-trigger attempts
  • If the recharge API is not operationally required, temporarily disable or block external reachability to this route

Patch Information

The vulnerability has been patched in free5GC CHF version 1.2.2. The fix adds proper bounds validation before slice access operations in the RechargePut handler. Organizations should apply this patch as the primary remediation measure.

Relevant patch resources:

  • GitHub Commit with Fix (commit 55af766f321a00afa978e806548c96f8a7d2433e)
  • Pull Request #61
  • Security Advisory GHSA-6g43-577r-wf4x

Workarounds

  • Implement network-level access controls to limit CHF SBI interface exposure to only authenticated and authorized internal network functions
  • Deploy a reverse proxy or API gateway with input validation rules to sanitize ratingGroup parameters before they reach the CHF service
  • Enable comprehensive panic recovery middleware with alerting to maintain service availability while generating security notifications
  • Consider temporarily disabling the vulnerable recharge endpoint if it is not critical to current operations
bash
# Example: Network ACL to restrict CHF SBI access
# Allow only trusted NF IP ranges to reach the CHF service
iptables -A INPUT -p tcp --dport 8000 -s 10.5.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8000 -j DROP

# Example: Rate limiting with iptables to mitigate repeated exploitation
iptables -A INPUT -p tcp --dport 8000 -m connlimit --connlimit-above 50 -j REJECT

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFree5gc

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-129
  • Technical References
  • GitHub Commit Details

  • GitHub Pull Request

  • GitHub Issue Discussion

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-5661: Free5GC NGSetupRequest Handler DoS Flaw

  • CVE-2026-30653: Free5gc DoS Vulnerability

  • CVE-2026-33191: Free5gc Udm DOS Vulnerability

  • CVE-2026-4531: Free5GC AMF Component 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