Gathos News

Technology·

Two Critical Kernel Bugs Threaten Linux Systems

Two new "very critical" vulnerabilities, CVE-2026-64564 and CVE-2026-64561, have been reported in the Linux kernel, affecting multiple versions up to 7.2-rc4. These bugs, one in SCTP and another in KVM, present significant risks to systems running the widely used operating system.

Technology

System administrators and cloud providers are on alert after vuldb.com disclosed two distinct yet equally severe vulnerabilities in the Linux kernel on August 4, 2026. Both are rated as "very critical," affecting a wide range of kernel versions, from 6.6.147 through to the recently released 7.2-rc4. The simultaneous discovery of these issues, impacting core networking and virtualization components, means many systems could be exposed to serious risks.

The first, identified as CVE-2026-64564, is a use-after-free bug within the Stream Control Transmission Protocol (SCTP) component. Specifically, the vulnerability lies in the `sctp_process_asconf_param` function. For those unfamiliar, SCTP is a relatively modern network protocol, sometimes considered an alternative to TCP or UDP, designed to handle multiple streams of data between two endpoints. A use-after-free flaw means that a program tries to access memory that has already been deallocated and potentially reused by another part of the system. This kind of bug is particularly dangerous because it can lead to anything from a system crash to arbitrary code execution, giving an attacker control over the affected machine. Given SCTP's role in critical applications like telecom and financial services, this particular vulnerability could have far-reaching consequences for systems relying on that protocol.

KVM Faces Memory Corruption

Compounding the security concerns is CVE-2026-64561, a memory corruption vulnerability found within the Kernel-based Virtual Machine (KVM). While the specific function impacted remains undisclosed by vuldb.com, the implications are clear: memory corruption in KVM can be devastating. KVM is the backbone of virtualization on Linux, powering countless cloud instances, data centers, and development environments globally. A memory corruption bug here could allow an attacker to escape a virtual machine and gain control of the host system, or manipulate data in unexpected ways. This kind of virtual machine escape is a top-tier threat in cloud security, and its presence in KVM, even if specific attack vectors aren't fully detailed yet, demands immediate attention.

What's particularly striking about these two vulnerabilities is their simultaneous disclosure and shared affected kernel versions. Both issues impact kernel branches 6.6, 6.12, 6.18, 7.1, and 7.2-rc4, indicating a widespread architectural or codebase concern rather than an isolated incident in a single, obscure function. The Linux kernel, being the foundation for nearly every major internet service, cloud provider, and much of our personal technology, is a constant target for security researchers and malicious actors alike. Its complexity, with millions of lines of code contributed by thousands of developers, makes it an incredibly challenging landscape to secure fully. We've seen critical kernel vulnerabilities before, like the infamous Dirty COW in 2016, which allowed local privilege escalation, or various network stack issues over the years. These new discoveries underscore the continuous cat-and-mouse game between developers patching bugs and attackers finding new ones.

What to Do Now

For system administrators, the message is stark: vigilance is key. While vuldb.com reports the vulnerabilities, they don't provide details on patches or mitigation strategies. We'll have to wait for official advisories and updates from kernel developers and distribution maintainers. However, general best practices apply: isolate critical services, monitor systems for unusual activity, and prepare to apply patches as soon as they become available. Given the "very critical" rating, it's safe to assume that a fix will be prioritized, and we should expect updates from major Linux distributions like Red Hat, Debian, Ubuntu, and others very soon. Ignoring these kinds of flaws could leave systems wide open to exploitation, potentially leading to data breaches or complete system compromise. The KVM bug, in particular, should send shivers down the spine of anyone running virtualized infrastructure.

Why it matters

These two critical kernel vulnerabilities highlight the ongoing challenge of securing the core software that underpins much of our digital world. With a use-after-free in a networking protocol and memory corruption in a virtualization layer, the attack surface is broad, and the potential impact on data integrity, confidentiality, and system availability is substantial. Organizations must prioritize patching and security updates as soon as they are released to protect their infrastructure from these newly identified threats.

Sources

Related