Skip to main content

CVE-2025-22056: Vulnerability in Linux Linux

High
VulnerabilityCVE-2025-22056cvecve-2025-22056
Published: Wed Apr 16 2025 (04/16/2025, 14:12:13 UTC)
Source: CVE
Vendor/Project: Linux
Product: Linux

Description

In the Linux kernel, the following vulnerability has been resolved: netfilter: nft_tunnel: fix geneve_opt type confusion addition When handling multiple NFTA_TUNNEL_KEY_OPTS_GENEVE attributes, the parsing logic should place every geneve_opt structure one by one compactly. Hence, when deciding the next geneve_opt position, the pointer addition should be in units of char *. However, the current implementation erroneously does type conversion before the addition, which will lead to heap out-of-bounds write. [ 6.989857] ================================================================== [ 6.990293] BUG: KASAN: slab-out-of-bounds in nft_tunnel_obj_init+0x977/0xa70 [ 6.990725] Write of size 124 at addr ffff888005f18974 by task poc/178 [ 6.991162] [ 6.991259] CPU: 0 PID: 178 Comm: poc-oob-write Not tainted 6.1.132 #1 [ 6.991655] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014 [ 6.992281] Call Trace: [ 6.992423] <TASK> [ 6.992586] dump_stack_lvl+0x44/0x5c [ 6.992801] print_report+0x184/0x4be [ 6.993790] kasan_report+0xc5/0x100 [ 6.994252] kasan_check_range+0xf3/0x1a0 [ 6.994486] memcpy+0x38/0x60 [ 6.994692] nft_tunnel_obj_init+0x977/0xa70 [ 6.995677] nft_obj_init+0x10c/0x1b0 [ 6.995891] nf_tables_newobj+0x585/0x950 [ 6.996922] nfnetlink_rcv_batch+0xdf9/0x1020 [ 6.998997] nfnetlink_rcv+0x1df/0x220 [ 6.999537] netlink_unicast+0x395/0x530 [ 7.000771] netlink_sendmsg+0x3d0/0x6d0 [ 7.001462] __sock_sendmsg+0x99/0xa0 [ 7.001707] ____sys_sendmsg+0x409/0x450 [ 7.002391] ___sys_sendmsg+0xfd/0x170 [ 7.003145] __sys_sendmsg+0xea/0x170 [ 7.004359] do_syscall_64+0x5e/0x90 [ 7.005817] entry_SYSCALL_64_after_hwframe+0x6e/0xd8 [ 7.006127] RIP: 0033:0x7ec756d4e407 [ 7.006339] Code: 48 89 fa 4c 89 df e8 38 aa 00 00 8b 93 08 03 00 00 59 5e 48 83 f8 fc 74 1a 5b c3 0f 1f 84 00 00 00 00 00 48 8b 44 24 10 0f 05 <5b> c3 0f 1f 80 00 00 00 00 83 e2 39 83 faf [ 7.007364] RSP: 002b:00007ffed5d46760 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 7.007827] RAX: ffffffffffffffda RBX: 00007ec756cc4740 RCX: 00007ec756d4e407 [ 7.008223] RDX: 0000000000000000 RSI: 00007ffed5d467f0 RDI: 0000000000000003 [ 7.008620] RBP: 00007ffed5d468a0 R08: 0000000000000000 R09: 0000000000000000 [ 7.009039] R10: 0000000000000000 R11: 0000000000000202 R12: 0000000000000000 [ 7.009429] R13: 00007ffed5d478b0 R14: 00007ec756ee5000 R15: 00005cbd4e655cb8 Fix this bug with correct pointer addition and conversion in parse and dump code.

AI-Powered Analysis

AILast updated: 07/03/2025, 20:41:01 UTC

Technical Analysis

CVE-2025-22056 is a vulnerability identified in the Linux kernel's netfilter subsystem, specifically within the nft_tunnel module that handles Geneve (Generic Network Virtualization Encapsulation) options parsing. The flaw arises due to improper pointer arithmetic and type conversion when processing multiple NFTA_TUNNEL_KEY_OPTS_GENEVE attributes. The parsing logic is supposed to sequentially and compactly place each geneve_opt structure by advancing the pointer in units of bytes (char *). However, the existing implementation incorrectly performs type conversion before pointer addition, leading to a heap out-of-bounds write. This memory corruption is confirmed by Kernel Address Sanitizer (KASAN) logs showing slab-out-of-bounds writes during nft_tunnel_obj_init execution. The vulnerability allows an attacker with the ability to send crafted netlink messages to the kernel's nftables interface to trigger out-of-bounds writes on the heap. This can cause kernel crashes (denial of service) or potentially enable privilege escalation or arbitrary code execution within the kernel context if exploited further. The issue affects Linux kernel versions prior to the patch that corrects the pointer arithmetic and type conversion in the parsing and dumping code of Geneve options. No known exploits are currently reported in the wild, and no CVSS score has been assigned yet. The vulnerability requires local or network-level access to send malicious netlink messages, but no user interaction beyond that is needed. The flaw impacts the integrity and availability of the system by corrupting kernel memory and causing instability or compromise.

Potential Impact

For European organizations, this vulnerability poses a significant risk, especially for those relying heavily on Linux-based infrastructure, including servers, network appliances, and cloud environments. The netfilter subsystem is widely used for firewalling and network packet filtering, so exploitation could disrupt critical network security functions. An attacker exploiting this vulnerability could cause kernel panics leading to denial of service, impacting availability of services. More critically, if combined with other exploits, it could lead to privilege escalation or arbitrary code execution at the kernel level, compromising confidentiality and integrity of sensitive data. Organizations running containerized workloads or virtualized environments using Geneve tunnels for network overlay could be particularly exposed. The lack of a public exploit currently reduces immediate risk, but the vulnerability's presence in the Linux kernel—a core component in many European government, financial, and industrial systems—makes timely patching essential to prevent potential targeted attacks. The complexity of the vulnerability means that skilled attackers with access to internal networks or compromised hosts could leverage it to escalate privileges or disrupt operations.

Mitigation Recommendations

European organizations should prioritize updating Linux kernels to versions where this vulnerability is patched. Since the issue lies in the netfilter nft_tunnel module, kernel upgrades from trusted sources or vendor-provided security patches should be applied promptly. Network administrators should audit and restrict access to netlink interfaces, limiting which users or processes can send nftables netlink messages, reducing the attack surface. Employing kernel hardening features such as Kernel Address Sanitizer (KASAN) in testing environments can help detect similar issues early. For environments using Geneve tunnels, monitoring and logging netlink communications for anomalous or malformed messages can provide early warning signs. Additionally, organizations should implement strict network segmentation and access controls to prevent unauthorized lateral movement that could lead to exploitation. Regular vulnerability scanning and penetration testing focusing on kernel-level vulnerabilities and privilege escalation paths are recommended. Finally, maintain robust incident response plans to quickly address any kernel-level compromises.

Need more detailed analysis?Get Pro

Technical Details

Data Version
5.1
Assigner Short Name
Linux
Date Reserved
2024-12-29T08:45:45.812Z
Cisa Enriched
false
Cvss Version
null
State
PUBLISHED

Threat ID: 682d9831c4522896dcbe7f5f

Added to database: 5/21/2025, 9:09:05 AM

Last enriched: 7/3/2025, 8:41:01 PM

Last updated: 8/15/2025, 10:47:57 AM

Views: 28

Actions

PRO

Updates to AI analysis are available only with a Pro account. Contact root@offseq.com for access.

Please log in to the Console to use AI analysis features.

Need enhanced features?

Contact root@offseq.com for Pro access with improved analysis and higher rate limits.

Latest Threats