CVE-2024-26925

Published Apr 25, 2024

Last updated 2 months ago

Overview

Description
In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path The commit mutex should not be released during the critical section between nft_gc_seq_begin() and nft_gc_seq_end(), otherwise, async GC worker could collect expired objects and get the released commit lock within the same GC sequence. nf_tables_module_autoload() temporarily releases the mutex to load module dependencies, then it goes back to replay the transaction again. Move it at the end of the abort phase after nft_gc_seq_end() is called.
Source
416baaa9-dc9f-4396-8d5f-8c081fb06d67
NVD status
Modified
Products
linux_kernel, debian_linux

Risk scores

CVSS 3.1

Type
Primary
Base score
5.5
Impact score
3.6
Exploitability score
1.8
Vector string
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Severity
MEDIUM

Weaknesses

nvd@nist.gov
CWE-667

Social media

Hype score
Not currently trending
  1. Critical Linux kernel vuln (CVE-2024-26925) patched by #SUSE. Use-after-free in Netfilter threatens DoS & privilege escalation on Real-Time systems Read more: ๐Ÿ‘‰ https://t.co/LVHQpLrPOU #Security https://t.co/u7aF943vMM

    @Cezar_H_Linux

    31 Oct 2025

    14 Impressions

    0 Retweets

    0 Likes

    0 Bookmarks

    0 Replies

    0 Quotes

  2. #SUSE Kernel Live Patch Alert: SUSE-2025-20828-1 patches a critical Use-After-Free flaw (CVE-2024-26925). Local privilege escalation to root is possible. Patch NOW with zero downtime. ๐Ÿ”’ Read more: ๐Ÿ‘‰ https://t.co/FGVsOHL61y #Security https://t.co/FiT6kVcGY2

    @Cezar_H_Linux

    14 Oct 2025

    14 Impressions

    0 Retweets

    0 Likes

    0 Bookmarks

    0 Replies

    0 Quotes

  3. ๐Ÿšจ URGENT for #SUSE Linux users! ๐Ÿšจ A high-severity kernel vulnerability (CVE-2024-26925) in Btrfs can cause system crashes. Patched in update 2025-03539-1. Read more: ๐Ÿ‘‰ https://t.co/FfPV4D8Kcw #Security https://t.co/92hPmdsESl

    @Cezar_H_Linux

    10 Oct 2025

    78 Impressions

    0 Retweets

    0 Likes

    0 Bookmarks

    0 Replies

    0 Quotes

  4. URGENT: High-severity flaw (CVE-2024-26925) in Linux kernel NFS client. CVSS 7.1. Requires immediate patching on #Ubuntu systems. Read more: ๐Ÿ‘‰ https://t.co/p245IcRHpf #Security https://t.co/LURq6yg4t9

    @Cezar_H_Linux

    29 Aug 2025

    25 Impressions

    0 Retweets

    0 Likes

    0 Bookmarks

    0 Replies

    0 Quotes

  5. Technical Deep Dive: netfilter nf_tables vulnerability (CVE-2024-26925) remediation. Includes: Memory corruption analysis. Ansible playbook snippet. Ad revenue protection strategies. Kernel debug log monitoring. Read more: ๐Ÿ‘‰ https://t.co/qJfkgBOeAW #Ubuntu #Security http

    @Cezar_H_Linux

    16 Aug 2025

    32 Impressions

    0 Retweets

    0 Likes

    0 Bookmarks

    0 Replies

    0 Quotes

Configurations

  1. In the Linux kernel, the following vulnerability has been resolved: ipv6: account for fraggap on the paged allocation path In __ip6_append_data(), when the paged-allocation branch is taken (MSG_MORE / NETIF_F_SG / large fraglen), alloclen and pagedlen are computed as alloclen = fragheaderlen + transhdrlen; pagedlen = datalen - transhdrlen; datalen already includes fraggap (datalen = length + fraggap). When fraggap is non-zero, this is not the first skb and transhdrlen is zero. The fraggap bytes carried over from the previous skb are copied just past the fragment headers in the new skb's linear area. The linear area is therefore undersized by fraggap bytes while pagedlen is overstated by the same amount, and the copy writes past skb->end into the trailing skb_shared_info. An unprivileged user can trigger this via a UDPv6 socket using MSG_MORE together with MSG_SPLICE_PAGES. The bad accounting was introduced by commit 773ba4fe9104 ("ipv6: avoid partial copy for zc"). Before commit ce650a166335 ("udp6: Fix __ip6_append_data()'s handling of MSG_SPLICE_PAGES"), the negative copy value caused -EINVAL to be returned. That later commit allowed MSG_SPLICE_PAGES to proceed in this case, making the corruption triggerable. The non-paged branch sets alloclen to fraglen, which already accounts for fraggap because datalen does. Bring the paged branch in line by adding fraggap to alloclen and subtracting it from pagedlen. After this adjustment, copy no longer collapses to -fraggap on the paged path, so remove the stale comment describing that old arithmetic. Since a negative copy is no longer expected for a valid MSG_SPLICE_PAGES case, remove the MSG_SPLICE_PAGES exception from the negative copy check.โ€ขCVE-2026-53362