CVE-2026-64299
Awaiting Analysis Awaiting Analysis - Queue

Out-of-Bounds Read in Linux Kernel Tracing Glob Matching

Vulnerability report for CVE-2026-64299, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-25

Last updated on: 2026-08-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: tracing: Prevent out-of-bounds read in glob matching String event fields are not necessarily NUL-terminated, so the filter predicate functions (filter_pred_string(), filter_pred_strloc() and filter_pred_strrelloc()) pass the field length to the regex match callbacks, and the length-aware matchers honour it. regex_match_glob() was the exception: it ignored the length and called glob_match(), which scans the string until it hits a NUL byte. Some string fields are not NUL-terminated. One example is the dynamic char array of the xfs_* namespace tracepoints, which is copied without a trailing NUL. For such a field, glob matching reads past the end of the event field, causing a KASAN slab-out-of-bounds read in glob_match(), reached via regex_match_glob() and filter_match_preds() from the xfs_lookup tracepoint. Add a length-bounded glob_match_len() and use it from regex_match_glob() so glob matching always stops at the field boundary. The matching loop is factored into a shared helper so glob_match() keeps its behaviour.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-08-11
Generated
2026-08-14
AI Q&A
2026-07-25
EPSS Evaluated
2026-08-13
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability is in the Linux kernel's tracing subsystem. It involves an out-of-bounds read during glob matching in string event fields. String fields may not be NUL-terminated, but the glob matching function ignored the field length and scanned until a NUL byte, causing it to read past the end of the field.

Detection Guidance

This vulnerability is specific to the Linux kernel's tracing subsystem and requires kernel-level access to detect. Check if your kernel version includes the fix by running uname -r and comparing against patched versions. Monitor kernel logs for KASAN slab-out-of-bounds errors using dmesg | grep -i kasan.

Impact Analysis

This vulnerability could allow an attacker with local access to trigger a kernel slab-out-of-bounds read, potentially leading to system crashes or information leaks. It affects systems using the Linux kernel with tracing enabled.

Compliance Impact

This vulnerability is a memory safety issue in the Linux kernel's tracing subsystem that could lead to out-of-bounds memory reads. It does not directly impact compliance with standards like GDPR or HIPAA, as those focus on data protection, privacy, and security controls rather than kernel memory management.

Mitigation Strategies

Update your Linux kernel to a version that includes the fix for CVE-2026-64299. If immediate patching is not possible, disable tracing features that use string event fields or restrict access to tracepoint functionality until the update is applied.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-64299. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart