PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-72484 Linux CVE debrief

The Linux kernel has a vulnerability in the staging: most: video module. A double free issue occurs when video_register_device() fails in comp_register_videodev(). This happens because video_device_alloc() allocates a video_device, and video_register_device() releases it if registration fails. However, if __video_register_device() fails, it calls put_device(&vdev->dev), leading to v4l2_device_release() and video_device_release(vdev). On the other hand, comp_register_videodev() also calls video_device_release(mdev->vdev) on failure. To fix this, use video_device_release_empty() during registration so that registration failure paths do not free mdev->vdev through vdev->release(). After successful registration, restore video_device_release() for normal lifetime handling.

Vendor
Linux
Product
Unknown
CVSS
Unknown
CISA KEV
Not listed in stored evidence
Original CVE published
2026-08-15
Original CVE updated
2026-08-15
Advisory published
2026-08-15
Advisory updated
2026-08-15

Who should care

System administrators, Linux kernel developers, and users of Linux-based systems should be aware of this vulnerability and take necessary actions to patch or mitigate it. Affected operators, platform administrators, vulnerability management teams, and security teams should prioritize patching and review system configurations to ensure the video module is properly configured. Additionally, they should monitor system logs for potential denial-of-service or arbitrary code execution attempts and review compensating controls for exposed systems while remediation is scheduled and verified. This includes confirming whether affected product deployments exist in managed environments and assigning an owner for follow-up. The vulnerability's impact on system security and potential exploitation should be carefully evaluated, and necessary measures should be taken to prevent exploitation. Linux distributions and package maintainers should also be aware of this issue and ensure that patched versions are made available to users. Users of Linux-based systems should apply the official patch or update to the latest Linux kernel version as soon as possible. System administrators should review system configurations and ensure that the video module is properly configured to prevent exploitation. Vulnerability management teams should track exceptions, retest remediated assets, and close the item only after evidence is documented. Security teams should prioritize patching and review system configurations to ensure the video module is properly configured. Compensating controls should be reviewed for exposed systems while remediation is scheduled and verified. Monitoring and detection capabilities should be checked for exposed assets that need extra review. Asset inventory and source tracking should also be reviewed to ensure that all affected systems are properly managed and secured. Rollback/change windows should be planned and implemented as necessary to ensure that patched versions are deployed in a timely manner. Overall, a comprehensive approach is needed to address this vulnerability and prevent potential exploitation. This may involve coordinating with vendors, applying patches,

Technical summary

The Linux kernel's staging: most: video module has a double free vulnerability. When video_register_device() fails in comp_register_videodev(), it causes a double free issue because video_device_alloc() allocates a video_device and video_register_device() releases it on failure. The fix involves using video_device_release_empty() during registration failures and restoring video_device_release() after successful registration.

Defensive priority

This vulnerability may allow local attackers to cause a denial of service or potentially execute arbitrary code with elevated privileges. System administrators and developers should prioritize patching this vulnerability.

Recommended defensive actions

  • Apply the official patch or update to the latest Linux kernel version.
  • Review system configurations and ensure the video module is properly configured.
  • Monitor system logs for potential denial-of-service or arbitrary code execution attempts.
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up.
  • Review the supplied official advisory or CVE record to validate affected scope, severity, and vendor guidance.
  • Plan vendor-supported updates or mitigations through normal change control where exposure is confirmed.
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review.

Evidence notes

The issue was identified by a static analysis tool. The vulnerability exists in the Linux kernel's staging: most: video module. The double free issue arises from the handling of video device registration failures.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-08-15T06:22:22.647Z and has not been modified since then.