Tuesday, February 25, 2025
HomeCyber Security NewsKernelSnitch: Uncovering a New Side-Channel Attack on Data Structures

KernelSnitch: Uncovering a New Side-Channel Attack on Data Structures

Published on

SIEM as a Service

Follow Us on Google News

Researchers at Graz University of Technology have uncovered a groundbreaking software-based side-channel attack, KernelSnitch, which exploits timing variances in Linux kernel data structures.

Unlike hardware-dependent attacks, KernelSnitch targets hash tables, radix trees, and red-black trees, enabling unprivileged attackers to leak sensitive data across isolated processes, as per a report by a Researcher Published on Github.

The Vulnerability: Kernel Data Structures as Silent Leakers

Operating systems rely on dynamic data structures like hash tables and trees to manage metadata for user-space locks, timers, and inter-process communication (IPC).

KernelSnitch exploits a critical architectural oversight: the time required to access these structures depends on their occupancy (number of elements).

By measuring syscall execution times, attackers infer occupancy levels and extract secrets.

How KernelSnitch Works

  1. Timing Measurement: Attackers trigger syscalls (e.g., futex, msgget) that interact with kernel structures.
  2. Occupancy Inference: Longer syscall durations indicate higher occupancy due to iterative searches (e.g., traversing linked lists in hash buckets).
  3. Amplification: Minimal timing differences (as low as 8 CPU cycles) are magnified via cache thrashing (flushing CPU caches to exacerbate memory latency) or structure manipulation (artificially inflating occupancy).
KernelSnitch exploits variable access times in hash tables. Each bucket’s linked list length affects syscall duration, leaked via timestamp comparisons.
KernelSnitch exploits variable access times in hash tables. Each bucket’s linked list length affects syscall duration, leaked via timestamp comparisons.

Three Real-World Exploits Demonstrated

1. Covert Channel (580 kbit/s Transmission)

Malicious processes communicate by modulating hash bucket occupancy. On an Intel i7-1260P, KernelSnitch achieved 580 kbit/s with 2.8% error rates using the futex subsystem.

2. Kernel Heap Pointer Leak

By forcing hash collisions, attackers deduce secret kernel addresses (e.g., mm_struct) used in hash functions. This enables precise heap manipulation for privilege escalation, leaking pointers in under 65 seconds.

3. Website Fingerprinting (89% Accuracy)

Monitoring Firefox’s futex activity during webpage loads created unique timing fingerprints. A convolutional neural network (CNN) identified sites from the Ahrefs Top 100 list with 89.5% F1 score.

Why KernelSnitch Matters

  • Hardware-Agnostic: Unlike Spectre or Meltdown, KernelSnitch exploits software design flaws, bypassing hardware mitigations.
  • Broad Impact: All major OSes using dynamic kernel structures are vulnerable. Tested on Linux 5.15–6.8.
  • Stealth: Requires no privileges or shared memory, evading existing sandboxes.

Mitigation Challenges

Fixing KernelSnitch demands fundamental changes:

  1. Constant-Time Structures: Eliminate occupancy-dependent operations (e.g., precompute worst-case traversal steps).
  2. Namespace Isolation: Restrict structure sharing across security domains.
  3. Randomized Hashing: Obfuscate kernel address inputs in hash functions.

As co-author Lukas Maar noted, “Constant-time coding is impractical for general-purpose kernels. We need architectural shifts, not patches.”

KernelSnitch exposes a pervasive blind spot in OS security: performance optimizations that inadvertently create side channels.

With PoC code already public, developers must prioritize structural hardening over incremental fixes.

As kernel-level attacks grow sophisticated, rethinking core design paradigms becomes urgent—before exploitation eclipses mitigation.

Free Webinar: Better SOC with Interactive Malware Sandbox for Incident Response, and Threat Hunting - Register Here

Divya
Divya
Divya is a Senior Journalist at GBhackers covering Cyber Attacks, Threats, Breaches, Vulnerabilities and other happenings in the cyber world.

Latest articles

Researchers Jailbreak OpenAI o1/o3, DeepSeek-R1, and Gemini 2.0 Flash Models

Researchers from Duke University and Carnegie Mellon University have demonstrated successful jailbreaks of OpenAI’s...

INE Secures Spot Top 50 Education Software Rankings 2025 in G2’s

INE, the leading provider of networking and cybersecurity training and certifications, today announced its...

Silent Killers Exploit Windows Policy Loophole to Evade Detections and Deploy Malware

In a significant cybersecurity revelation, researchers have uncovered a large-scale campaign exploiting a Windows...

200 Malicious GitHub Repositories Distributing Malware to Developers

A sophisticated malware campaign dubbed GitVenom has infected over 200 GitHub repositories, targeting developers with fake...

Supply Chain Attack Prevention

Free Webinar - Supply Chain Attack Prevention

Recent attacks like Polyfill[.]io show how compromised third-party components become backdoors for hackers. PCI DSS 4.0’s Requirement 6.4.3 mandates stricter browser script controls, while Requirement 12.8 focuses on securing third-party providers.

Join Vivekanand Gopalan (VP of Products – Indusface) and Phani Deepak Akella (VP of Marketing – Indusface) as they break down these compliance requirements and share strategies to protect your applications from supply chain attacks.

Discussion points

Meeting PCI DSS 4.0 mandates.
Blocking malicious components and unauthorized JavaScript execution.
PIdentifying attack surfaces from third-party dependencies.
Preventing man-in-the-browser attacks with proactive monitoring.

More like this

Researchers Jailbreak OpenAI o1/o3, DeepSeek-R1, and Gemini 2.0 Flash Models

Researchers from Duke University and Carnegie Mellon University have demonstrated successful jailbreaks of OpenAI’s...

Silent Killers Exploit Windows Policy Loophole to Evade Detections and Deploy Malware

In a significant cybersecurity revelation, researchers have uncovered a large-scale campaign exploiting a Windows...

200 Malicious GitHub Repositories Distributing Malware to Developers

A sophisticated malware campaign dubbed GitVenom has infected over 200 GitHub repositories, targeting developers with fake...