Reference page — cumulative record through Wednesday, August 19, 2026 UTC. Reference pages update as the archive grows; only dated daily editions are immutable pages of record.
Linux Linux — ppp: fix race conditions in ppp_fill_forward_path
AV AC PR UI S C I A CVSS EPSS %ile KEV
L H L N U N N H 4.7 .0030 22.5 —
AFFECTED
Product Versions Fixed
Linux f6efc675c9dd8d93f826b79ae7e33e03301db609 – —
Linux 5.13 – 5.15.190
TIMELINE
Apr 16 Reserved by Linux
Sep 5 Published (CNA: Linux)
Jul 30 RESCORED — CVE-2025-39673 (Linux). CVSS 9.8 → 4.7 (NVD).
Description
In the Linux kernel, the following vulnerability has been resolved:
ppp: fix race conditions in ppp_fill_forward_path
ppp_fill_forward_path() has two race conditions:
1. The ppp->channels list can change between list_empty() and
list_first_entry(), as ppp_lock() is not held. If the only channel
is deleted in ppp_disconnect_channel(), list_first_entry() may
access an empty head or a freed entry, and trigger a panic.
2. pch->chan can be NULL. When ppp_unregister_channel() is called,
pch->chan is set to NULL before pch is removed from ppp->channels.
Fix these by using a lockless RCU approach:
- Use list_first_or_null_rcu() to safely test and access the first list
entry.
- Convert list modifications on ppp->channels to their RCU variants and
add synchronize_net() after removal.
- Check for a NULL pch->chan before dereferencing it.
Lifecycle
Complete event history — 3 events, chronological
| Date | Event | Detail |
| April 16, 2025 | Reserved | Reserved by Linux |
| September 5, 2025 | Published | Published (CNA: Linux) |
| July 30, 2026 | RESCORED | RESCORED — CVE-2025-39673 (Linux). CVSS 9.8 → 4.7 (NVD). |
Affected
Affected products and packages — 2 rows
| Vendor | Product / Package | Ecosystem | Version introduced | Fixed |
| Linux | Linux | — | f6efc675c9dd8d93f826b79ae7e33e03301db609 | — |
| Linux | Linux | — | 5.13 | 5.15.190 |
About this page
This is a reference page, not a dated page of record. It assembles the complete lifecycle of CVE-2025-39673 from the CVE Program record, NVD enrichment, the CISA KEV catalog, EPSS, and OSV advisories. The box score's numbers (CVSS, EPSS, KEV status) are current as of Wednesday, August 19, 2026 UTC and are re-derived as the archive grows; only dated daily editions are immutable pages of record. The authoritative source for this identifier is cve.org.