CVE-2021-47324: watchdog: Fix possible use-after-free in wdt_startup()
In the Linux kernel, the following vulnerability has been resolved:
watchdog: Fix possible use-after-free in wdt_startup()
This module's remove path calls del_timer(). However, that function
does not wait until the timer handler finishes. This means that the
timer handler may still be running after the driver's remove function
has finished, which would result in a use-after-free.
Fix by calling del_timer_sync(), which makes sure the timer handler
has finished, and unable to re-schedule itself.
Security readout for executives and security teams
Plain-English summary
A Linux kernel watchdog cleanup bug can leave a timer running after related driver memory has been freed. That creates a use-after-free condition with high confidentiality, integrity, and availability impact in the CVSS record. The source bundle does not show active exploitation.
Executive priority
Prioritize normal high-severity kernel patching, especially for multi-user, exposed, or critical Linux systems. The business risk is meaningful, but this bundle does not justify emergency active-exploitation handling.
Technical view
CVE-2021-47324 fixes a watchdog wdt_startup() use-after-free. The remove path used del_timer(), which does not wait for a running timer handler to finish. The fix uses del_timer_sync() so the handler completes and cannot re-schedule itself after driver removal.
Likely exposure
Exposure is most likely on systems running affected Linux kernel versions or downstream builds without the referenced stable fixes. Distribution backports may alter apparent version exposure, so package-level verification is needed.
Exploitation context
The CVSS vector is 8.8, AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H. KEV is false, and the supplied sources do not cite public exploitation. Treat exploitability as plausible but unconfirmed from this bundle.
Researcher notes
The record attributes the issue to timer teardown semantics in watchdog code. Affected-version metadata is broad and includes commit-style entries, so rely on stable commit presence and distribution backport status rather than upstream version strings alone.
Mitigation direction
Update to a vendor-supported kernel containing the referenced stable fixes.
Check Linux distribution advisories for backported patches.
Prioritize internet-facing or multi-user Linux systems first.
Reboot systems after kernel update if required by vendor guidance.
Validation and detection
Inventory Linux kernel versions across servers, appliances, and images.
Compare installed kernel packages against vendor fixed builds.
Check package changelogs for the referenced stable commit IDs.
Confirm vulnerable kernels are retired or patched after remediation.
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
10Source 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.