CVE-2026-31405
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn the Linux kernel, the following vulnerability has been resolved: media: dvb-net: fix OOB access in ULE extension header tables The ule_mandatory_ext_handlers[] and ule_optional_ext_handlers[] tables in handle_one_ule_extension() are declared with 255 elements (valid indices 0-254), but the index htype is derived from network-controlled data as (ule_sndu_type & 0x00FF), giving a range of 0-255. When htype equals 255, an out-of-bounds read occurs on the function pointer table, and the OOB value may be called as a function pointer. Add a bounds check on htype against the array size before either table is accessed. Out-of-range values now cause the SNDU to be discarded.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceIn the Linux kernel's DVB-NET subsystem, the ULE extension header handler tables (ule_mandatory_ext_handlers[] and ule_optional_ext_handlers[]) are declared with 255 elements (valid indices 0-254), but the index htype is derived from network-controlled data as (ule_sndu_type & 0x00FF), allowing values 0-255. When htype equals 255, an out-of-bounds read occurs and the OOB value may be invoked as a function pointer, enabling remote code execution.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 2.6.12.1, < 5.10.253>= 5.11, < 5.15.203>= 5.16, < 6.1.167>= 6.2, < 6.6.130>= 6.7, < 6.12.78>= 6.13, < 6.18.19>= 6.19, < 6.19.9= 2.6.12= 7.0CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check kernel versionRun `uname -r` or check `/proc/version` to get the running kernel versionAffected if The kernel version falls within any of these ranges: >= 2.6.12.1 and < 5.10.253; >= 5.11 and < 5.15.203; >= 5.16 and < 6.1.167; >= 6.2 and < 6.6.130; >= 6.7 and < 6.12.78; >= 6.13 and < 6.18.19; >= 6.19 and < 6.19.9; equals 2.6.12 or 7.0
-
Verify DVB kernel modules are loadedRun `lsmod | grep -i dvb` or check `/sys/class/dvb/` directory existence to see if any DVB modules are presentAffected if DVB modules such as dvb_core, dvb_net, or related network handlers are loaded or the /sys/class/dvb/ directory exists on the system
-
Check for DVB network interface configurationRun `ip link show` or check `/etc/network/interfaces` and related config for dvb interfaces (typically named dvb0_*)Affected if Any DVB network interfaces are configured or present on the system, indicating the DVB network stack is in use
-
Confirm ULE extension handling is activeCheck kernel config for CONFIG_DVB_NET (run `zcat /proc/config.gz 2>/dev/null | grep CONFIG_DVB_NET` or check /boot/config-$(uname -r))Affected if CONFIG_DVB_NET=y or CONFIG_DVB_NET=m is set, enabling the ULE extension handler code path where the vulnerability resides
-
Identify if system receives untrusted DVB streamsReview system logs, DVB hardware configuration, or network monitoring for incoming DVB transport stream trafficAffected if The system is configured to receive or process DVB broadcast streams from untrusted sources, which would trigger the handle_one_ule_extension function with attacker-controlled htype values
A system is affected if it runs a vulnerable kernel version AND has the DVB network stack (CONFIG_DVB_NET) enabled while processing DVB broadcast streams that could deliver a crafted htype value of 255.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped5.10.2535.15.2036.1.167
Apply the kernel patch to add bounds checking on htype before table access. Until patched, consider network isolation or disabling DVB networking functionality if not required, as the attack vector is network-adjacent.
Upgrade to kernel 5.10.253+, 5.15.203+, 6.1.167+, or 6.6.130+ depending on which major version branch you are on
- Identify the currently running Linux kernel version using `uname -r`
- Determine which version range your current kernel falls into (5.10.x, 5.11-5.14, 5.16-6.1, or 6.2-6.6)
- For 5.10.x kernels: upgrade to kernel version 5.10.253 or later
- For 5.11-5.14 kernels: upgrade to kernel version 5.15.203 or later (note: 5.15 is the LTS successor to 5.11-5.14)
- For 5.16-6.1 kernels: upgrade to kernel version 6.1.167 or later
- For 6.2-6.6 kernels: upgrade to kernel version 6.6.130 or later
- Use your distribution's package manager to install the new kernel (e.g., `apt-get update && apt-get install linux-image-<version>` for Debian/Ubuntu, or `yum update kernel` for RHEL/CentOS)
- Reboot the system to load the new kernel
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation2.0 h
- Testing4.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,144.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-31405 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-31405 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data