CVE-2026-46303

Description

A flaw was found in the Linux kernel's isofs filesystem. This vulnerability allows a local attacker, by mounting a specially crafted ISO image, to read data beyond the boundaries of the intended ISO 9660 volume. This out-of-bounds read could lead to information disclosure, potentially exposing sensitive data from adjacent filesystems on the same block device.

Statement

This Moderate flaw in the Linux kernel's isofs filesystem allows a local attacker to disclose information. Exploitation requires local access and the ability to mount a specially crafted ISO image, which could occur via CAP_SYS_ADMIN or through desktop auto-mount features like udisks2. This could expose sensitive data from adjacent filesystems on the same block device.

Mitigation

To reduce exposure, restrict the ability of untrusted users to mount ISO images. If the `isofs` kernel module is not essential for system operation, it can be prevented from loading.
To blacklist the `isofs` module:
1. Create or edit `/etc/modprobe.d/blacklist-isofs.conf` and add:

   blacklist isofs
install isofs /bin/true
2. Regenerate the initramfs to apply the change:
bash
dracut -f -v
3. A system reboot is required for this change to take full effect. This action may affect functionality requiring ISO 9660 filesystem mounts.

Common Vulnerability Scoring System (CVSS) Score Details

Info alert:Important note

CVSS scores for open source components depend on vendor-specific factors (e.g. version or build chain). Therefore, Red Hat's score and impact rating can be different from NVD and other vendors. Red Hat remains the authoritative CVE Naming Authority (CNA) source for its products and services (see Red Hat classifications).

CVSS v3 Score Breakdown

Red HatNVDcve.org
Base Score5.5N/A8.2
Attack VectorLocalN/ANetwork
Attack ComplexityLowN/ALow
Privileges RequiredLowN/ANone
User InteractionNoneN/ANone
ScopeUnchangedN/AUnchanged
ConfidentialityNoneN/AHigh
Integrity ImpactNoneN/ALow
Availability ImpactHighN/ANone

Vector

Red Hat: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

cve.org: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N

Understanding the Weakness (CWE)

Confidentiality

Technical Impact: Read Memory

An attacker could get secret values such as cryptographic keys, PII, memory addresses, or other information that could be used in additional attacks.

Confidentiality

Technical Impact: Bypass Protection Mechanism

Out-of-bounds memory could contain memory addresses or other information that can be used to bypass ASLR and other protection mechanisms in order to improve the reliability of exploiting a separate weakness for code execution.

Availability

Technical Impact: DoS: Crash, Exit, or Restart

An attacker could cause a segmentation fault or crash by causing memory to be read outside of the bounds of the buffer. This is especially likely when the code reads a variable amount of data and assumes that a sentinel exists to stop the read operation, such as a NUL in a string.

Other

Technical Impact: Varies by Context

The read operation could produce other undefined or unexpected results.

Frequently Asked Questions

Want to get errata notifications? Sign up here.