PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-53162 Linux CVE debrief

A vulnerability was discovered in the Linux kernel, specifically in the memcg (memory cgroup) subsystem. The vulnerability arises from the use of get_random_u32_below() in the nmi context, which can lead to corruption of the ChaCha batch state. This can cause issues with memcg charge draining, potentially leading to unexpected behavior or crashes. The vulnerability has been resolved by replacing the random pick with a per-cpu round-robin counter stored in memcg_stock_pcp and serialized by the same local_trylock that already guards cached[] and nr_pages[].

Vendor
Linux
Product
Unknown
CVSS
HIGH 7.8
CISA KEV
Not listed in stored evidence
Original CVE published
2026-06-25
Original CVE updated
2026-07-06
Advisory published
2026-06-25
Advisory updated
2026-07-06

Who should care

System administrators and security teams responsible for Linux kernel-based systems should be aware of this vulnerability. The vulnerability's impact is limited to systems using the Linux kernel with memcg enabled. The vulnerability's CVSS score is 7.8, indicating a high severity level.

Technical summary

The vulnerability is caused by the use of get_random_u32_below() in the nmi context, which is not reentrant- or NMI-safe. This can lead to corruption of the ChaCha batch state. The vulnerability has been resolved by replacing the random pick with a per-cpu round-robin counter stored in memcg_stock_pcp and serialized by the same local_trylock that already guards cached[] and nr_pages[]. This change ensures that the memcg_stock local_trylock prevents re-entry on the percpu stock itself, protecting against unrelated subsystem per-cpu lock corruption.

Defensive priority

High priority should be given to patching affected Linux kernel systems, as the vulnerability has a high CVSS score and can potentially lead to system crashes or unexpected behavior.

Recommended defensive actions

  • Patch affected Linux kernel systems as soon as possible.
  • Review system configurations to ensure memcg is enabled and properly configured.
  • Monitor system logs for any unusual activity related to memcg charge draining.
  • Consider implementing compensating controls, such as additional logging or monitoring, to detect potential issues.
  • Verify that all necessary security updates are applied to the Linux kernel.

Evidence notes

The vulnerability was reported by Harry Yoo and resolved by replacing the random pick with a per-cpu round-robin counter. The vulnerability's CVSS score is 7.8, indicating a high severity level. The vulnerability's impact is limited to systems using the Linux kernel with memcg enabled.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-53162 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-53162

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-53162 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-53162

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/00731bd7e18f182a32ca54d6b176eaa470b51ed7

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/89bd8215e25aa6999cc51696da418e0d422bc5e0

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/c0cafe24d3f6534294c4b2bc2d47734ff7cbd313

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.