In the Linux kernel, the following vulnerability has been resolved:
phylib: fix potential use-after-free
Commit bafbdd527d56 ("phylib: Add device reset GPIO support") added call
to phy_device_reset(phydev) after the put_device() call in phy_detach().
The comment before the put_device() call says that the phydev might go
away with put_device().
Fix potential use-after-free by calling phy_device_reset() before
put_device().
Security readout for executives and security teams
Plain-English summary
CVE-2022-48754 is a Linux kernel flaw in phylib, the library used by some network PHY drivers. A device object could be released before reset handling finished, creating a potential use-after-free. The CVSS score is high, but the supplied evidence describes local attack conditions, not remote exploitation.
Executive priority
Treat this as a high-priority kernel maintenance item, especially for Linux infrastructure and embedded or network-facing appliances. There is no supplied evidence of active exploitation, but kernel memory-safety flaws can carry severe impact and should not wait for routine patch cycles.
Technical view
The issue is CWE-416 in Linux kernel phylib. In phy_detach(), phy_device_reset() was called after put_device(), even though put_device() might free phydev. Stable fixes reorder the logic so reset occurs before the reference is dropped. The affected data names Linux kernel versions/ranges and the introducing commit bafbdd527d56.
Likely exposure
Exposure is most relevant to Linux systems running affected kernel builds with phylib and PHY reset GPIO support. The bundle does not map exposure to specific distributions or appliances, so kernel package backports and vendor advisories must be checked before declaring a system affected.
Exploitation context
The source bundle marks KEV as false and provides no cited evidence of active exploitation or public exploit use. CVSS lists local access, low complexity, no privileges, and no user interaction, with high confidentiality, integrity, and availability impact if successfully exploited.
Researcher notes
The useful validation question is not only kernel version, but whether the vendor tree contains the reordered phy_detach() fix. The supplied affected data is version-oriented and commit-oriented, so distro backport analysis is necessary. No exploit mechanics are provided in the sources.
Mitigation direction
Update to a vendor-supported kernel containing the relevant stable phylib fix.
Check distribution advisories for backported fixes under CVE-2022-48754.
Prioritize Linux hosts or appliances using affected network PHY drivers.
Review kernel vendor guidance before applying compensating controls.
Validation and detection
Inventory Linux kernel versions and package build identifiers across managed systems.
Confirm whether vendor kernels include one of the referenced stable commits.
Identify systems using phylib-dependent network hardware or reset GPIO paths.
Review kernel logs for unexplained network driver crashes or detach failures.
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
2ADP providers
7Source 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.