CVE-2024-50127: net: sched: fix use-after-free in taprio_change()
In the Linux kernel, the following vulnerability has been resolved:
net: sched: fix use-after-free in taprio_change()
In 'taprio_change()', 'admin' pointer may become dangling due to sched
switch / removal caused by 'advance_sched()', and critical section
protected by 'q->current_entry_lock' is too small to prevent from such
a scenario (which causes use-after-free detected by KASAN). Fix this
by prefer 'rcu_replace_pointer()' over 'rcu_assign_pointer()' to update
'admin' immediately before an attempt to schedule freeing.
Security readout for executives and security teams
Plain-English summary
CVE-2024-50127 is a Linux kernel memory-safety flaw in the TAPRIO network scheduler. A local user with some privileges could potentially trigger a use-after-free, with high confidentiality, integrity, and availability impact per CVSS. The bundle does not show active exploitation.
Executive priority
Prioritize normal high-severity kernel patching, especially for shared Linux hosts, multi-user systems, and operational technology assets. Urgency is reduced by local attack requirements and no KEV evidence, but impact is high if an attacker already has local access.
Technical view
The issue is a CWE-416 use-after-free in net sched taprio_change(). The admin pointer can become dangling during schedule switch or removal by advance_sched(); the existing q->current_entry_lock section was too small. Stable kernel fixes replace rcu_assign_pointer() with rcu_replace_pointer() before scheduled freeing.
Likely exposure
Exposure is mainly Linux systems running affected kernel versions with the relevant traffic-control scheduler code reachable. Debian LTS and Siemens references indicate downstream tracking, but the bundle does not provide full product-level exposure details.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high impact to confidentiality, integrity, and availability. The source bundle marks KEV as false and provides no cited evidence of public exploitation.
Researcher notes
Key uncertainty is reachability in specific deployments. The bundle identifies the root cause and stable fixes, but not exploit availability, required kernel configuration, or product-specific Siemens impact. Validate by kernel branch and vendor backport, not only upstream version strings.
Mitigation direction
Update affected Linux kernels using vendor-supported packages or stable kernel fixes.
For Debian LTS systems, apply the referenced Debian security updates.
For Siemens environments, review SSA-265688 for product-specific status and guidance.
Restrict local shell access and administrative network-configuration privileges where feasible.
Track vendor advisories for backported fixes matching deployed kernel branches.
Validation and detection
Inventory Linux kernel versions across servers, appliances, and embedded systems.
Check whether deployed kernels include the referenced stable commits or vendor backports.
Review Debian LTS advisory applicability for Debian-based assets.
Review Siemens SSA-265688 for affected product mapping in OT environments.
Confirm vulnerability scanners are using CVE data updated after 2026-05-12.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-416: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
1CVSS vectors
3Timeline events
3ADP providers
11Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: noneAutomatable: noTechnical Impact: total
CVSS vector scores
1 official score
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-416 · source CWE mapping
Use After Free
Use After Free represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.