The vulnerability exists in the free5GC NEF component's handling of PFD (Packet Flow Description) change notifications. An attacker can create a PFD subscription with a malicious notifyUri pointing to an unreachable endpoint. When a relevant change occurs, the NEF's PfdNotifyContext.FlushNotifications function attempts to send a notification. In vulnerable versions, a failure to connect to the attacker-controlled notifyUri would result in a call to logger.PFDManageLog.Fatal(). This function call immediately terminates the entire process by calling os.Exit(1), leading to a denial of service. The vulnerability is exploitable by an unauthenticated attacker due to separate authorization bypass issues. The patch in commit f110517b1189801950b50668a593398687049074 fixes this by replacing the Fatal log call with Errorf, which logs the delivery failure without crashing the service. Therefore, PfdNotifyContext.FlushNotifications is the key function that would be observed in a runtime profile during the exploitation of this vulnerability.