linux-kernel

Tag

Cards List
#linux-kernel

Bad Epoll (CVE-2026-46242)

Lobsters Hottest · 2026-07-04 Cached

Bad Epoll (CVE-2026-46242) is a race-condition use-after-free vulnerability in the Linux kernel's epoll subsystem that allows unprivileged users to escalate to root on both Linux and Android devices. It was reported by Jaeyoung Chung and was missed by Anthropic's Mythos AI.

0 favorites 0 likes
#linux-kernel

PostgreSQL and the OOM Killer: Why You Must Use Strict Memory Overcommit

Hacker News Top · 2026-07-03 Cached

This blog post explains why PostgreSQL databases are vulnerable to OOM killer and how using strict memory overcommit can prevent catastrophic outages. It also discusses a kernel bug and heuristics for setting the proper overcommit limit.

0 favorites 0 likes
#linux-kernel

kernel asynchronous reads in PostgreSQL 19 (io_uring)

Lobsters Hottest · 2026-07-02 Cached

PostgreSQL 19 introduces kernel asynchronous reads via io_uring, enabling direct asynchronous buffered I/O for improved performance without dedicated worker processes.

0 favorites 0 likes
#linux-kernel

Unprivileged root via an out-of-bounds write in the FUSE readdir cache (CVE-2026-31694)

Lobsters Hottest · 2026-07-02 Cached

A vulnerability in the Linux kernel's FUSE readdir cache (CVE-2026-31694) allows unprivileged local users to escalate to root via an out-of-bounds write. The bug affects many desktop distributions and can be exploited by mounting a FUSE filesystem.

0 favorites 0 likes
#linux-kernel

Investigating Linux graphics (2025)

Lobsters Hottest · 2026-06-30 Cached

A deep dive into the Linux graphics stack, tracing from GPU triangle drawing through Mesa3D, GLFW, OpenGL, Vulkan, Wayland, and Linux DRM to understand how the system works.

0 favorites 0 likes
#linux-kernel

The end of the AArch64 desktopexperiment

Lobsters Hottest · 2026-06-30 Cached

Marcin Juszkiewicz concludes his 11-month experiment using an Ampere Altra AArch64 system as a desktop, citing ongoing PCIe issues that required custom kernel builds and limiting its viability as a daily driver.

0 favorites 0 likes
#linux-kernel

Unprivileged root via a use-after-free in DRM GEM change_handle (CVE-2026-46215)

Lobsters Hottest · 2026-06-29 Cached

A use-after-free vulnerability in the DRM GEM core ioctl DRM_IOCTL_GEM_CHANGE_HANDLE allows unprivileged local users with render node access to escalate to root. The bug was fixed in the Linux kernel mainline in May 2026.

0 favorites 0 likes
#linux-kernel

@vivekgalatage: The Path of a Packet Through the Linux Kernel https://net.in.tum.de/fileadmin/TUM/NET/NET-2024-04-1/NET-2024-04-1_16.pd…

X AI KOLs Timeline · 2026-06-27 Cached

This technical report from TUM details the path a packet takes through the Linux kernel, covering networking internals.

0 favorites 0 likes
#linux-kernel

C in the Linux Kernel

Lobsters Hottest · 2026-06-27 Cached

This article delves into the differences between C in the Linux kernel and ordinary userspace C, covering core techniques such as resource management, error handling, concurrency, logging, static analysis, and extensively using GNU C extensions and kernel-specific patterns.

0 favorites 0 likes
#linux-kernel

Linux 7.2 Improves Anonymous/Unnamed Pipe Performance For Shell Pipelines & More

Lobsters Hottest · 2026-06-27 Cached

Linux 7.2 kernel merges a performance optimization for anonymous/unnamed pipes, improving throughput by 6-48% and reducing latency by 17-33% by pre-allocating pages outside of mutex lock to avoid contention.

0 favorites 0 likes
#linux-kernel

SOCKMAP - TCP splicing of the future

Lobsters Hottest · 2026-06-21 Cached

Cloudflare explores using Linux kernel's SOCKMAP infrastructure for TCP socket splicing, which reduces userspace overhead and enables more efficient data forwarding in reverse proxies.

0 favorites 0 likes
#linux-kernel

Linux Eliminates the Strncpy API After Six Years of Work, 360 Patches

Hacker News Top · 2026-06-20 Cached

Linux 7.2 has finally removed the deprecated strncpy API after six years and over 360 patches due to its bug-prone nature, replacing it with safer alternatives like strscpy and memcpy.

0 favorites 0 likes
#linux-kernel

@DataChaz: How do you index the entire Linux kernel (28M lines of code) for an AI agent in 3 minutes? You stop letting the agent r…

X AI KOLs Timeline · 2026-06-15 Cached

A new open-source tool called codebase-memory-mcp indexes entire codebases like the Linux kernel in minutes using AST knowledge graphs, achieving massive efficiency gains for AI agents with 99% token reduction and 83% answer quality.

0 favorites 0 likes
#linux-kernel

Magic Buffers and io_uring Registered Buffers

Hacker News Top · 2026-06-15 Cached

The article explores using mmap to create a magic ring buffer where two contiguous virtual memory ranges map the same physical memory, and tests its compatibility with io_uring's registered buffers, finding that it works as expected.

0 favorites 0 likes
#linux-kernel

Unix GC Remastered

Hacker News Top · 2026-06-10 Cached

A detailed walkthrough of the Linux kernel's AF_UNIX garbage collector rewrite, explaining the background, the new graph-based model, and a Use-After-Free bug.

0 favorites 0 likes
#linux-kernel

High-severity vulnerability in Linux caused by a single faulty character

Ars Technica · 2026-06-09 Cached

A single faulty character in the Linux kernel introduced a use-after-free vulnerability (CVE-2026-53111) allowing unprivileged users to escalate privileges to root on Debian and Ubuntu systems; the bug has been fixed and backported.

0 favorites 0 likes
#linux-kernel

Exploring automatic Buffer Management with io_uring

Lobsters Hottest · 2026-06-07 Cached

The article details the implementation of automatic buffer management using io_uring's buffer rings in UringMachine, a Ruby gem for asynchronous I/O. It explains how buffer rings enable efficient multishot read/recv operations by allowing the kernel to use application-provided buffers.

0 favorites 0 likes
#linux-kernel

@alswl: Did you know the Linux kernel has a feature introduced in 1997 that allows Apple Silicon Macs to efficiently run x86 containers? It's called binfmt_misc, introduced in Linux 2.1.43, nearly 30 years ago. The principle is extremely simple: Linux...

X AI KOLs Timeline · 2026-06-05 Cached

This article introduces the binfmt_misc feature introduced in the Linux kernel in 1997. It allows registering rules to hand off binary execution to a specified interpreter. Today, combined with Rosetta on Apple Silicon Macs, it enables efficient x86 container operation, achieving performance close to 70-90% of native.

0 favorites 0 likes
#linux-kernel

@browser_use: Here's 25 browsers starting in less than 1 second Enjoy

X AI KOLs Following · 2026-06-03 Cached

Browser Use launches a new browser infrastructure service featuring subsecond cold starts, lower cost at $0.02/h, and unlimited scaling, now live for developers.

0 favorites 0 likes
#linux-kernel

iSCSI CHAP: Heap Buffer Overflow in the Linux Kernel

Lobsters Hottest · 2026-06-01 Cached

A heap buffer overflow vulnerability in the Linux kernel's iSCSI target authentication code (BASE64 CHAP decoding) allows unauthenticated remote attackers to overflow fixed-size buffers, potentially leading to code execution. The vulnerability was introduced in a 2022 commit and affects systems with iSCSI target support.

0 favorites 0 likes
← Previous
Next →
← Back to home

Submit Feedback