Debian A.I CyberSecurity Scoring
Debian
Company Information
Website:https://www.debian.org
Employees number:500
Number of followers:122,774
NAICS:5112
Industry Type:Software Development
Homepage:debian.org
Debian Risk Score (AI oriented)
Between 700 and 749
DebianSoftware Development
Updated:
07/08/2026
07/08/2026
711/1000
Moderate
Ba
Debian Global Score (TPRM)
xxxx
DebianSoftware Development
Score locked

DebianModerate
Current Score
711Ba (MODERATE)
01000
13 incidents
-4.91 avg impact
Incident timeline with MITRE ATT&CK tactics, techniques, and mitigations.
AUGUST 2026
716
Vulnerability
04 Aug 2026 • Debian
Ubuntu, Debian, Linux Kernel Project and Rocky Linux: 18-Year-Old Linux Kernel SCTP Vulnerability Lets Attackers Gain Full Root on Host
Critical 18-Year-Old Linux Kernel Flaw (CVE-2026-64564) Enables Root Access and Container Escapes
711
CRITICAL-5
LINROCUBUDEB1786123420
Critical 18-Year-Old Linux Kernel Flaw (CVE-2026-64564) Enables Root Access and Container Escapes
A severe use-after-free vulnerability in the Linux kernel, dubbed SCTPhantom (CVE-2026-64564), has been disclosed, allowing attackers with unprivileged local access to escalate to root privileges or escape containers to compromise the host system. The flaw, introduced in Linux 2.6.25 (December 2007), remained undetected for nearly 18 years before its discovery.
The bug resides in the SCTP Dynamic Address Reconfiguration feature, specifically in how the kernel processes ASCONF chunks a mechanism defined in RFC 5061 for managing network paths in SCTP associations. The vulnerability stems from an identity mismatch in address validation: while the kernel checks a DEL-IP operation using the packet’s source address, a cached pointer relies on the address parameter tied to the actual network path. By crafting a malicious ASCONF sequence (e.g., adding, deleting, and then wildcard-deleting an address), attackers can force the kernel to dereference freed memory, triggering a use-after-free condition.
Researchers at TencentOS Security Team, leveraging their Corvus AI autonomous vulnerability research system, developed a full privilege-escalation exploit chain. The attack begins by reclaiming the freed memory via a packet socket ring buffer, leaking a kernel memory address to bypass KASLR (Kernel Address Space Layout Randomization). A second use-after-free, combined with SCTP authentication key manipulation, constructs a fake kernel object graph, ultimately executing commit_creds to grant root access all without traditional shellcode or ROP chains.
The exploit also enables container-to-host escapes, bypassing default seccomp profiles by leveraging per-socket SCTP options instead of system-wide sysctls. Testing across Ubuntu 24.04, Debian 13, Rocky Linux 9, and kernels from 5.14 to 7.2, the attack succeeded in all environments, including six of eight container escape attempts.
With a CVSS v4.0 base score of 8.5 (High), the flaw poses significant risk due to its low attack complexity and severe impact on confidentiality, integrity, and availability. A patch (commit 9b245f86f0b) was merged upstream, rejecting DEL-IP requests targeting transports still referenced by active ASCONF chunks. Fixes have been backported to stable branches (6.6.148, 6.12.101, 6.18.42, 7.1.6), and CVE-2026-64564 was formally announced on August 4, 2026, following private disclosure on July 12.
Systems running SCTP-enabled kernels, particularly in multi-tenant or containerized environments, are urged to apply updates immediately.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
JULY 2026
716
JUNE 2026
718
Vulnerability
16 Jun 2026 • Debian
Debian and Ubuntu: New Critical Linux Vulnerability Enables Root Privilege Escalation
New Linux Kernel Vulnerability 'pedit COW' Enables Stealthy Root Access via Memory Corruption
713
CRITICAL-5
DEBCAN1782614110
New Linux Kernel Vulnerability "pedit COW" Enables Stealthy Root Access via Memory Corruption
A critical Linux kernel vulnerability, tracked as CVE-2026-46331 and dubbed pedit COW, allows attackers to escalate privileges to root by silently corrupting cached system binaries in memory without altering files on disk. Disclosed in June 2026, the flaw has quickly become one of the most closely monitored local privilege escalation threats of the year, with a working proof-of-concept exploit released within 24 hours of public disclosure.
The vulnerability resides in the Linux kernel’s traffic control (tc) subsystem, specifically the pedit (packet editor) module, which enables administrators to modify packet headers in transit. The issue stems from a memory corruption bug in the `tcf_pedit_act()` function, where a miscalculation in writable memory ranges allows attackers to bypass copy-on-write (COW) protections. Instead of writing to isolated memory, malicious modifications spill into shared page-cache memory, enabling the corruption of cached privileged binaries (e.g., `/bin/su`) while leaving the original files untouched.
This stealthy attack method evades traditional file integrity monitoring (FIM) tools, as checksums and disk-based scans fail to detect tampering. Once exploited, the compromised cached binary grants root access, though flushing the page cache removes the corrupted image without terminating any already-established malicious processes.
### Exploitation and Impact
The flaw requires two key conditions for successful exploitation:
1. The act_pedit kernel module must be available or loadable.
2. The system must permit unprivileged user namespaces, granting attackers `CAP_NET_ADMIN` privileges within a namespace.
These prerequisites are common in containerized environments, rootless runtimes, and shared Linux infrastructure, making systems like Red Hat Enterprise Linux 10, Debian 13 (Trixie), and Ubuntu 24.04 (under certain AppArmor configurations) particularly vulnerable. Ubuntu 26.04’s default AppArmor restrictions block the exploit path, though the underlying kernel flaw remains unpatched until updated.
### Vendor Response and Mitigations
Major Linux distributions, including Red Hat, Debian, and Ubuntu, have released security advisories and patches. Red Hat classified the issue as Important, affecting RHEL 8, 9, and 10, while Debian and Ubuntu issued updates for supported releases. The vulnerability has also been added to the National Vulnerability Database (NVD).
Temporary mitigations include:
- Disabling the act_pedit module on systems not using packet-editing rules.
- Restricting unprivileged user namespaces, though this may disrupt containerized workloads.
### Broader Implications
pedit COW joins a growing family of Linux page-cache corruption vulnerabilities, including Dirty COW (CVE-2016-5195) and Dirty Pipe, which exploit flaws in memory management to escalate privileges. The rapid weaponization of this flaw underscores the challenge of kernel patch transparency, where routine fixes can inadvertently reveal exploitable conditions before organizations deploy updates.
Systems with multi-user access, Kubernetes clusters, CI/CD pipelines, and cloud infrastructure are at heightened risk, as the vulnerability enables full system compromise from a standard user account. Defenders are advised to prioritize kernel updates and monitor upstream patches to reduce exposure before exploits proliferate.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
MAY 2026
721
Vulnerability
19 May 2026 • Debian
Debian, Linux and Ubuntu: New DirtyClone Linux Vulnerability Allows Attackers to Gain Root Access Via Cloned Packets
DirtyClone: Linux Kernel Vulnerability Enables Root Access Without a Trace
716
CRITICAL-5
DEBTHECAN1782498459
New Linux Kernel Vulnerability "DirtyClone" Enables Root Access Without a Trace
A critical local privilege escalation flaw in the Linux kernel, dubbed DirtyClone (CVE-2026-43503), has been disclosed, allowing unprivileged users to gain full root access by exploiting the XFRM/IPsec subsystem. The vulnerability, discovered by JFrog Security Research during an audit of prior DirtyFrag fixes, carries a CVSS score of 8.8 and enables attacks without leaving logs or audit trails.
DirtyClone is part of the DirtyFrag vulnerability family, which exploits improper handling of socket buffers (skb) and shared page-cache memory. The flaw stems from the `__pskb_copy_fclone()` function, which drops the `SKBFL_SHARED_FRAG` safety flag a mitigation introduced in earlier patches during packet cloning. Unlike its predecessors, DirtyClone leverages the netfilter TEE target to trigger the exploit via packet duplication.
The attack involves seven steps, including mapping a privileged binary (e.g., `/usr/bin/su`) into page cache, splicing it into a UDP socket buffer, and manipulating IPsec decryption to overwrite the binary’s in-memory copy. The disk file remains unaltered, evading file-integrity monitoring.
Affected systems include most modern Linux distributions where unprivileged user namespaces are enabled, such as Debian, Fedora, and Ubuntu (partially mitigated in 24.04+). Cloud and container environments with user namespaces are at heightened risk. The vulnerability was patched in Linux v7.1-rc5 (May 24, 2026), with a fix ensuring the `SKBFL_SHARED_FRAG` flag is preserved across all skb operations. No public proof-of-concept (PoC) exists, as JFrog has withheld exploit code during patch rollouts.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
MAY 2026
726
Vulnerability
14 May 2026 • Debian
Debian, Ubuntu and Raspberry Pi OS: Critical Linux Kernel Flaw ‘ssh-keysign-pwn’ Exposes SSH Keys and Shadow Passwords
Critical Linux Kernel Flaw Exposes SSH Keys and Password Hashes (CVE-2026-46333)
721
CRITICAL-5
UBURASDEB1778919975
Critical Linux Kernel Flaw Exposes SSH Keys and Password Hashes
A newly disclosed Linux kernel vulnerability, tracked as CVE-2026-46333 and dubbed "ssh-keysign-pwn," allows attackers to extract highly sensitive data including SSH private keys and password hashes from affected systems. The flaw stems from a race condition in the kernel’s ptrace access control logic, specifically within the `__ptrace_may_access()` function.
### How the Exploit Works
The vulnerability arises when a privileged process (e.g., ssh-keysign or chage) shuts down. During this brief window, its memory context is cleared (mm = NULL), but its file descriptors remain open. An unprivileged local attacker can exploit this gap using `pidfd_getfd()` to steal these descriptors, bypassing intended permission checks.
A proof-of-concept (PoC) exploit on GitHub demonstrates how attackers can repeatedly spawn processes to race against a privileged helper’s exit, successfully extracting file descriptors in 100–2000 attempts making it a practical threat.
### Impact & Risks
- SSH Private Key Theft: Enables attackers to impersonate systems or users, conduct man-in-the-middle (MitM) attacks, and move laterally across networks.
- Password Hash Exposure: Full read access to `/etc/shadow`, allowing offline cracking of credentials.
- Cascading Compromises: Since SSH keys are often reused, a single breach can lead to wider network access.
### Affected Systems
The flaw impacts most Linux distributions running kernels before the May 14, 2026 patch, including:
- Ubuntu
- Debian
- Arch Linux
- CentOS
- Raspberry Pi OS
Given the vulnerability’s six-year existence, many long-term deployments remain exposed.
### Mitigation & Response
- Apply kernel patches for CVE-2026-46333.
- Rotate all SSH keys, particularly on critical systems.
- Audit access to sensitive files like `/etc/shadow`.
- Monitor for suspicious `ptrace` or `pidfd` system calls.
- Restrict local user access where possible, as exploitation requires local presence.
With a public PoC exploit already available, the risk of active exploitation in the wild is heightened, underscoring the urgency for remediation.
INCIDENT DETAILS -
TYPE
IMPACT
DATA BREACH
REFERENCES
MAY 2026
730
Vulnerability
07 May 2026 • Debian
openSUSE, CentOS, AlmaLinux, Ubuntu and Fedora: Dirty Frag Linux Vulnerability Let Attackers Gain Root Privileges – PoC Released
Dirty Frag: New Linux Kernel LPE Vulnerability Grants Root Access Across Major Distros
726
CRITICAL-4
TUXOPEFEDTHEUBU1778214411
Dirty Frag: New Linux Kernel LPE Vulnerability Grants Root Access Across Major Distros
A newly disclosed Linux kernel vulnerability, dubbed Dirty Frag, enables local privilege escalation (LPE) by chaining two page-cache write flaws xfrm-ESP Page-Cache Write and RxRPC Page-Cache Write to achieve root access on nearly all major Linux distributions. The exploit, publicly released on May 7, 2026, following an embargo break, leverages a deterministic logic flaw rather than race conditions, ensuring a high success rate without kernel panics.
Discovered by security researcher Hyunwoo Kim (@v4bel), Dirty Frag exploits the kernel’s zero-copy send path, where `splice()` inserts a reference to a read-only page cache (e.g., `/etc/passwd` or `/usr/bin/su`) into the `frag` slot of a sender-side `sk_buff`. Receiver-side cryptographic operations then modify the page cache in-place, corrupting files even for unprivileged users.
### Exploit Mechanics
1. xfrm-ESP Variant:
- Targets `esp_input()` in the IPsec ESP receive path, skipping buffer allocation checks (`skb_cow_data()`) for non-linear `skb`s.
- Attackers use `XFRMA_REPLAY_ESN_VAL` to overwrite arbitrary bytes (e.g., `/usr/bin/su`) with a root-shell ELF, requiring user namespace creation (`unshare(CLONE_NEWUSER)`), which is blocked on some Ubuntu systems via AppArmor.
2. RxRPC Variant:
- Exploits `rxkad_verify_packet_1()` to perform in-place decryption on the first 8 bytes of an RxRPC payload.
- Attackers brute-force a session key to manipulate plaintext (e.g., emptying `/etc/passwd`’s password field), bypassing PAM authentication. This variant does not require namespace privileges but relies on the `rxrpc.ko` module, absent by default on RHEL but present on Ubuntu.
Chaining both exploits ensures root access across distributions, with the PoC first attempting the ESP path before falling back to RxRPC if `unshare` fails.
### Affected Systems
The vulnerabilities span nine years, with the ESP flaw introduced in January 2017 (commit `cac2661c53f3`) and the RxRPC flaw in June 2023 (commit `2dc334f1a63a`). Confirmed affected distributions include:
- Ubuntu 24.04.4 (kernel 6.17.0-23)
- RHEL 10.1 (kernel 6.12.0-124.49.1)
- openSUSE Tumbleweed (kernel 7.0.2-1)
- CentOS Stream 10, AlmaLinux 10, Fedora 44
### Patches & Mitigation
- The ESP patch, using `SKBFL_SHARED_FRAG` to enforce buffer isolation, was merged into the netdev tree on May 7, 2026.
- The RxRPC patch remains unmerged upstream.
- No CVEs have been assigned due to the premature embargo break.
- Temporary mitigation involves blacklisting the affected modules (`esp4`, `esp6`, `rxrpc`) via:
```bash
sh -c "printf 'install esp4 /bin/false\ninstall esp6 /bin/false\ninstall rxrpc /bin/false\n' > /etc/modprobe.d/dirtyfrag.conf; rmmod esp4 esp6 rxrpc 2>/dev/null; true"
```
This disrupts IPsec and RxRPC functionality, requiring careful evaluation for systems reliant on VPNs.
The full technical write-up and PoC are available on the researcher’s GitHub repository.
INCIDENT DETAILS -
TYPE
IMPACT
DATA BREACH
REFERENCES
APRIL 2026
735
Vulnerability
22 Apr 2026 • Debian
Debian, Fedora and Ubuntu: Critical Pack2TheRoot Vulnerability Let Attackers Gain Root Access or Compromise the System
High-Severity Linux Privilege Escalation Flaw 'Pack2TheRoot' Disclosed
730
CRITICAL-5
DEBUBUFED1776933436
High-Severity Linux Privilege Escalation Flaw "Pack2TheRoot" Disclosed
Deutsche Telekom’s Red Team has publicly disclosed a high-severity privilege escalation vulnerability, CVE-2026-41651 (CVSS 8.8), dubbed Pack2TheRoot, affecting default installations of major Linux distributions. The flaw, present in the PackageKit daemon a widely used package management abstraction layer allows any local unprivileged user to silently install or remove system packages, ultimately gaining full root access without authentication.
The vulnerability impacts PackageKit versions 1.0.2 through 1.3.4, spanning over 12 years of releases and exposing systems across Debian, Ubuntu, Fedora, and Red Hat-based distributions, including enterprise servers running Cockpit. Confirmed vulnerable default installations include:
- Ubuntu Desktop (18.04, 24.04.4 LTS, 26.04 LTS Beta)
- Ubuntu Server (22.04, 24.04 LTS)
- Debian Desktop (Trixie 13.4)
- Rocky Linux Desktop (10.1)
- Fedora (43 Desktop and Server)
Exploitation is straightforward: an attacker with basic local access can bypass authorization controls, install malicious packages, or remove critical security components. A proof-of-concept (PoC) exists, reliably achieving root code execution in seconds, though it remains undisclosed.
The flaw was discovered during Telekom Security’s research into local privilege escalation vectors, with Claude Opus (Anthropic) assisting in the investigation starting in 2025. Findings were responsibly disclosed to PackageKit maintainers, who confirmed the issue and its exploitability.
While the attack leaves detectable traces such as PackageKit daemon crashes logged in *journalctl* systems can be checked for vulnerability using:
- Debian/Ubuntu: `dpkg -l | grep -i packagekit`
- RPM-based: `rpm -qa | grep -i packagekit`
- Daemon status: `systemctl status packagekit` or `pkmon`
A patch was released in PackageKit 1.3.5 (April 22, 2026), with distribution-specific fixes available via:
- Debian: [security-tracker.debian.org](https://security-tracker.debian.org)
- Ubuntu: Launchpad CVE tracker
- Fedora: PackageKit-1.3.4-3 (via Koji)
Administrators are advised to apply updates immediately, particularly on internet-facing servers running Cockpit.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
MARCH 2026
739
Vulnerability
23 Mar 2026 • Debian
Debian and Fedora: WARNING: New Linux Vulnerability Enables Root Access Across Every Major Linux Distribution
Critical Linux Kernel Flaw 'Copy Fail' Grants Root Access Across Decade of Releases
734
CRITICAL-5
FEDDEB1777616905
Critical Linux Kernel Flaw "Copy Fail" Grants Root Access Across Decade of Releases
A newly disclosed vulnerability in the Linux kernel, tracked as CVE-2026-31431 and dubbed "Copy Fail," allows local attackers to gain full root access on affected systems with near-perfect reliability. The flaw, discovered by offensive security firm Theori, impacts Linux kernel versions released since 2017, exposing millions of systems globally.
### Discovery and Disclosure
Theori’s researchers identified the bug using Xint Code, an AI-assisted penetration testing platform, in just one hour of automated analysis targeting the kernel’s cryptographic subsystem. The vulnerability was responsibly disclosed to the Linux kernel security team on March 23, 2026, with patches released within a week. However, the subsequent public release of technical details and a proof-of-concept exploit has heightened urgency for system administrators.
### Technical Breakdown
Copy Fail is a logic flaw in the kernel’s cryptographic processing pipeline, specifically within the authentication encryption ("authenc") template. The exploit leverages the AF_ALG interface and the splice() system call to perform a controlled 4-byte write into the page cache of any readable file. By targeting setuid-root executables, attackers can manipulate file contents in memory, escalating privileges to root access.
The root cause stems from a 2017 performance optimization in Linux kernel 4.14, which allowed in-place buffer processing a design choice that inadvertently enabled memory manipulation.
### Impact and Exploitation
Theori demonstrated successful exploitation across major Linux distributions, including Ubuntu, Debian, Fedora, and RHEL, using a 732-byte Python script with a 100% success rate in testing. The flaw’s portability, reliability, and simplicity make it more dangerous than previous high-profile vulnerabilities like Dirty Pipe (CVE-2022-0847), as it affects a broader range of kernel versions without requiring complex offsets or environment tuning.
### Patch Status and Mitigation
The Linux kernel maintainers addressed the issue by reverting the problematic optimization, with fixes included in kernel versions 6.18.22, 6.19.12, and 7.0. Major distributions have begun rolling out updates, though some like Fedora 42+ have not yet published formal advisories, potentially delaying awareness.
For unpatched systems, temporary mitigation involves disabling the vulnerable crypto interface:
```bash
echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif.conf
rmmod algif_aead
```
### High-Risk Environments
Security teams are prioritizing patching in multi-tenant servers, Kubernetes clusters, CI/CD pipelines, and cloud-based SaaS environments, where a single compromised low-privilege user could lead to full system takeover or lateral movement.
### Broader Implications
The discovery underscores the growing role of AI in vulnerability research, with tools like Xint Code accelerating flaw detection from weeks to hours. While this speeds up defensive patching, it also raises concerns about attackers adopting similar automation to exploit vulnerabilities faster. The security community’s response remains clear: immediate patching is critical to prevent system compromise.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
MARCH 2026
744
Vulnerability
18 Mar 2026 • Debian
GNU: Critical Telnetd Vulnerability Enables Remote Code Execution Attacks
Critical Telnetd Vulnerability (CVE-2026-32746) Exposes Legacy Systems to Remote Code Execution
739
CRITICAL-5
GNU1773836738
Critical Telnetd Vulnerability (CVE-2026-32746) Exposes Legacy Systems to Remote Code Execution
A severe buffer overflow vulnerability (CVE-2026-32746) has been identified in the GNU InetUtils telnetd daemon, allowing unauthenticated attackers to execute arbitrary code with root privileges. The flaw, rated 9.8 (CVSS 3.1), was discovered by Dream Security Labs and affects all versions of the software up to 2.7.
The vulnerability stems from improper handling of LINEMODE SLC (Set Local Characters) option negotiation during the initial connection handshake. By sending a maliciously crafted message with an excessive triplet count over TCP port 23, attackers can trigger a buffer overflow before authentication occurs meaning no credentials or user interaction are required. Since telnetd typically runs with root privileges, successful exploitation grants full system compromise, enabling backdoor deployment, data exfiltration, or lateral movement within a network.
While modern IT environments have largely replaced Telnet with SSH, the protocol persists in legacy Industrial Control Systems (ICS), operational technology (OT), and government networks, including PLCs, SCADA systems, and embedded devices where upgrades are costly or operationally disruptive. This makes the flaw particularly dangerous for critical infrastructure, such as power grids, water treatment facilities, and manufacturing plants, where security modernization is slow and exposed systems remain common.
Mitigation efforts include disabling telnetd where possible, blocking port 23 at the network perimeter, restricting access to trusted IPs, and running the daemon without root privileges. Detection requires network-level monitoring, as standard logs won’t capture the attack. Security teams should configure firewalls to log all port 23 connections and deploy IDS/IPS solutions (e.g., Suricata, Snort) to flag LINEMODE SLC payloads exceeding 90 bytes. No active exploitation has been confirmed, but the flaw’s severity demands immediate action.
INCIDENT DETAILS -
TYPE
IMPACT
DATA BREACH
REFERENCES
MARCH 2026
748
Vulnerability
13 Mar 2026 • Debian
Debian and Ubuntu: OpenSSH GSSAPI Vulnerability Allow an Attacker to Crash SSH Child Processes
Critical OpenSSH GSSAPI Vulnerability (CVE-2026-3497) Exposes Linux Systems to Remote Crashes and Privilege Escalation Risks
743
CRITICAL-5
CANDEB1773375831
Critical OpenSSH GSSAPI Vulnerability (CVE-2026-3497) Exposes Linux Systems to Remote Crashes and Privilege Escalation Risks
A severe vulnerability in the GSSAPI Key Exchange implementation of OpenSSH, tracked as CVE-2026-3497, has been discovered by security researcher Jeremy Brown. The flaw affects multiple Linux distributions that applied the GSSAPI patch to their OpenSSH packages, enabling attackers to crash SSH child processes reliably and violate privilege separation boundaries with a single crafted network packet.
The issue originates from a one-line coding error in kexgsss.c, the server-side GSSAPI key exchange handler. The function `sshpkt_disconnect()` intended to queue a disconnect message was mistakenly used instead of `ssh_packet_disconnect()`, which terminates the process. This oversight causes the error handler to proceed into code that reads an uninitialized stack variable (`recv_tok`), whose contents are then passed to the privileged monitor process via IPC. The result is heap corruption when `gss_release_buffer()` attempts to free a garbage pointer.
Key details of the vulnerability include:
- Exploitation requirements: A single 300-byte SSH packet no authentication needed.
- Impact: 100% reliable crashes of SSH child processes on tested systems, with a 90-second lockout on x86_64 platforms. Crashes may trigger SIGABRT (signal 6) or SIGSEGV (signal 11).
- Privilege separation risk: Up to 127KB of heap data can be transmitted to the root-level monitor process via the privsep IPC channel, potentially enabling further exploitation.
- Variability across systems: Compiler flags and optimizations affect the severity. For example:
- Clang (-O0): Leaves a pointer value of `0xfffbe600` (4 bytes).
- GCC (-O2 -fno-stack-protector): Leaves a valid heap address (127,344 bytes).
- Tested configurations: `recv_tok.value` may point to NULL, stack/heap addresses, or unmapped memory.
Affected systems include Ubuntu and Debian servers with `GSSAPIKeyExchange` enabled, though the scope likely extends to other distributions due to variations in the GSSAPI KEX patch. The fix is straightforward: replacing all instances of `sshpkt_disconnect()` with `ssh_packet_disconnect()` in kexgsss.c. Ubuntu has already released a patch, and administrators are advised to apply updates or disable GSSAPIKeyExchange as a temporary mitigation.
INCIDENT DETAILS -
TYPE
IMPACT
DATA BREACH
REFERENCES
FEBRUARY 2026
753
Vulnerability
05 Feb 2026 • Debian
Debian, AlmaLinux, Ubuntu and Rocky Linux: Cyber Security News ®’s Post
Critical Linux Kernel Vulnerability (CVE-2026-23111) Enables Local Privilege Escalation
748
CRITICAL-5
TUXCANDEBROC1780943498
Critical Linux Kernel Vulnerability (CVE-2026-23111) Enables Local Privilege Escalation
A use-after-free vulnerability in the Linux kernel’s nftables subsystem has been disclosed, allowing unprivileged local attackers to escalate privileges to root on widely used distributions, including Debian Bookworm, Debian Trixie, Ubuntu 22.04 LTS, and Ubuntu 24.04 LTS.
Tracked as CVE-2026-23111, the flaw was discovered in early 2025 and patched upstream on February 5, 2026, via a kernel commit. The bug resides in the nft_map_catchall_activate() function within nftables, a packet filtering framework built on Linux’s Netfilter hooks.
Testing in a controlled lab environment revealed that Rocky Linux exhibited lower vulnerability exposure post-update compared to Ubuntu and Red Hat systems. However, kernel backports and system configurations influence risk, meaning version numbers alone may not fully indicate exposure. The vulnerability appears to affect Linux kernels 5.15 and later, while default kernels in AlmaLinux and Rocky Linux (5.14) remain unaffected.
The flaw underscores the ongoing risks of privilege escalation in Linux environments, particularly in systems relying on nftables for network filtering.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
JANUARY 2026
758
Vulnerability
26 Jan 2026 • Debian
GNU: Over 800K GNU InetUtils telnetd Instances Exposed to RCE Attacks as PoC Released
Critical RCE Vulnerability in GNU InetUtils telnetd Exposes 800,000 Systems
753
CRITICAL-5
GNU1769439621
Critical RCE Vulnerability in GNU InetUtils telnetd Exposes 800,000 Systems
A severe remote code execution (RCE) vulnerability, CVE-2026-24061, has been identified in the GNU InetUtils telnetd component, affecting approximately 800,000 exposed instances worldwide. The flaw, rated Critical (CVSS 9.8), allows unauthenticated attackers to execute arbitrary commands with root privileges on vulnerable systems.
The vulnerability stems from inadequate input validation in the telnetd service, enabling threat actors to craft malicious payloads that compromise systems. Proof-of-concept exploits have already been demonstrated, increasing the risk of widespread attacks. Since telnetd often runs with elevated privileges on legacy systems, successful exploitation grants full control over affected infrastructure.
Data from the Shadowserver Foundation’s Accessible Telnet Report reveals that exposed instances span multiple geographies and networks, with many systems running unpatched versions for extended periods. While safe vulnerability-specific scanning remains unavailable, organizations can use Shadowserver’s report to identify at-risk systems by cross-referencing their infrastructure against publicly accessible telnet services.
Immediate remediation steps include disabling telnetd on public-facing systems, implementing network segmentation, and upgrading to patched versions of GNU InetUtils. For systems where telnetd cannot be removed, restricting access via firewall rules and monitoring for exploitation attempts is recommended. The combination of widespread exposure, exploit availability, and delayed patching makes this a high-priority threat for affected organizations.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
DECEMBER 2025
757
NOVEMBER 2025
757
OCTOBER 2025
757
SEPTEMBER 2025
757
JANUARY 2025
758
Vulnerability
01 Jan 2025 • Debian
AlmaLinux, Fedora, Linux Kernel, Debian, Ubuntu, Rocky Linux, Amazon Linux, Linux Mint and Kali Linux: New OVSwrap Linux Vulnerability Lets Attackers Gain Root Access
New Linux Kernel Vulnerability (CVE-2026-64531) Enables Local Privilege Escalation via OVSwrap Flaw
756
CRITICAL-2
TUXUBUROCDEBTHEAMAKALFED1785940491
New Linux Kernel Vulnerability (CVE-2026-64531) Enables Local Privilege Escalation via OVSwrap Flaw
A critical Linux kernel vulnerability, tracked as CVE-2026-64531 and dubbed OVSwrap, has been disclosed, allowing unprivileged local users to escalate privileges to root on a wide range of Linux distributions. The flaw resides in the Open vSwitch (OVS) kernel datapath, a networking component commonly used in cloud, container, and virtualization environments.
The vulnerability was discovered by researcher Asim Viladi Oglu Manizada using an experimental approach combining large language models with structured memory-geometry visualizations to analyze complex kernel memory bugs. The issue stems from a 16-bit length field limitation in Netlink attributes, which OVS uses to store network actions. While the kernel permits action streams exceeding 64 KiB, it failed to validate whether individual nested actions such as a CLONE wrapping multiple small conntrack actions remained under the 16-bit ceiling.
When an attacker crafts an action large enough to exceed 65,535 bytes, the stored length value wraps around to a small number. The kernel then misinterprets attacker-controlled data as legitimate actions, enabling exploitation without memory grooming. The attack is highly reliable, resembling a logic bug rather than a traditional memory-corruption flaw.
Exploitation requires no pre-existing OVS bridge, daemon, or administrative rights an unprivileged local user can trigger the vulnerability by creating a user and network namespace (e.g., via `unshare -Urn`), gaining CAP_NET_ADMIN, and initializing a private OVS datapath. Since most distributions ship OVS as a loadable kernel module that auto-loads on demand, the attack surface exists even on systems where OVS was never explicitly installed.
The flaw affects default configurations across major Linux distributions, including AlmaLinux, Debian, Fedora, Ubuntu, Rocky Linux, Arch Linux, openSUSE Tumbleweed, Amazon Linux, Kali Linux, NixOS, and Linux Mint. Some systems require minor configuration adjustments, while older kernel branches (pre-2025) remain unaffected. The vulnerable code existed for 13 years but only became exploitable after a size limit was removed in 2025.
Patches have been released in stable kernel versions 5.15.212, 6.1.178, 6.6.145, 6.12.97, 6.18.40, and 7.1.5. Temporary mitigations include blacklisting the openvswitch module, disabling unprivileged user namespaces, or deploying an emergency BPF-based mitigation released alongside the proof-of-concept.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
JANUARY 2017
758
Vulnerability
01 Jan 2017 • Debian
Debian, SUSE, Ubuntu and Sudo: ‘CrackArmor’ Vulnerability in AppArmor Impacts 12.6M Linux Systems
Critical AppArmor Vulnerabilities Expose Millions of Linux Systems to Attack
756
CRITICAL-2
SUSDEBSUDCAN1773426242
Critical AppArmor Vulnerabilities Expose Millions of Linux Systems to Attack
Cybersecurity firm Qualys has uncovered nine severe vulnerabilities in AppArmor, the default security enforcement tool for major Linux distributions, including Ubuntu, Debian, and SUSE. These flaws, present since 2017 (version v4.11), affect an estimated 12.6 million enterprise systems worldwide, leaving them vulnerable to privilege escalation and container escapes.
The vulnerabilities stem from a "confused deputy" attack, where a low-privileged user manipulates trusted system tools (such as Sudo or Postfix) to bypass security restrictions. By exploiting hidden pseudo-files, attackers can gain root access, disable protections, or even break out of isolated containers often without detection. The risks include denial-of-service (DoS) attacks, unauthorized system modifications, and the removal of critical security policies.
The impact extends to banking, healthcare, and telecommunications, with CISA and DHS issuing emergency alerts for energy, water, and defense sectors, citing potential alignment with state-sponsored hacking tactics. Qualys CTO Dilip Bachwani emphasized that these flaws demonstrate how even default security mechanisms can be compromised without admin credentials.
While no CVE identifiers have been assigned, vendors including Ubuntu, Debian, SUSE, and Sudo have collaborated with Qualys to release patches. Administrators are advised to apply the latest kernel updates immediately to mitigate exposure.
INCIDENT DETAILS -
TYPE
MOTIVATION
IMPACT
REFERENCES
Frequently Asked Questions
?
What is the current A.I Rankiteo Cyber Score for Debian ??
What was Debian's A.I Rankiteo Cyber Score in July 2026 ??
What was Debian's A.I Rankiteo Cyber Score in June 2026 ??
What was Debian's A.I Rankiteo Cyber Score in May 2026 ??
What was Debian's A.I Rankiteo Cyber Score in April 2026 ??
What was Debian's A.I Rankiteo Cyber Score in March 2026 ??
What was Debian's A.I Rankiteo Cyber Score in February 2026 ??
What was Debian's A.I Rankiteo Cyber Score in January 2026 ??
What was Debian's A.I Rankiteo Cyber Score in December 2025 ??
What was Debian's A.I Rankiteo Cyber Score in November 2025 ??
What was Debian's A.I Rankiteo Cyber Score in October 2025 ??
What was Debian's A.I Rankiteo Cyber Score in September 2025 ??
What is the average per-incident point impact on Debian's A.I Rankiteo Cyber Score over the past 12 months ??
Where can I access detailed records of all cyber incidents associated with Debian ??
Where can I find a summary of the A.I Rankiteo Risk Scoring methodology ??
Where can I view Debian's profile page on Rankiteo ??
How accurate is the A.I Rankiteo Risk Scoring methodology ?