Junglewise Threat Intelligence

CVE-2026-63803: Linux Kernel use-after-free in hdlc_ppp timer handling

CVE-2026-63803 · Severity: info · CVSS 5.5 · Published 2026-07-19

Technologies: Linux Kernel. Vendors: Linux.

Executive brief

A vulnerability was identified in the Linux kernel's HDLC PPP implementation, a component used for wide-area network (WAN) communications. Under specific conditions during network device reconfiguration or shutdown, the system may attempt to use memory that has already been freed. This can lead to a system crash or unpredictable behavior, potentially impacting the availability of the affected server or networking equipment.

Technical details

A use-after-free vulnerability exists in drivers/net/wan/hdlc_ppp.c in the Linux kernel. The root cause is the lack of a .detach callback in the PPP protocol structure, which prevents detach_hdlc_protocol() from synchronizing or canceling per-protocol timers (LCP/IPCP/IPV6CP) before freeing the hdlc->state memory via kfree(). An attacker or a specific sequence of system events could trigger a race condition where a timer callback executes after the memory it references has been freed, leading to a kernel panic. The fix introduces a .detach helper that utilizes timer_shutdown_sync() to ensure all timers are stopped and synchronized before memory deallocation. This issue was discovered via static analysis and affects versions dating back to the 2.6.12-rc2 release.

Affected products

  • Linux Linux Kernel v2.6.12-rc2 to v6.10

Timeline

  • 2026-06-17: disclosed: Initial patch submission by Fan Wu
  • 2026-07-04: patched: Patch committed to stable branches by Greg Kroah-Hartman
  • 2026-07-19: advisory: CVE-2026-63803 published

References

Related threats