CVE-2026-88373
Received Received - Intake

NULL Pointer Dereference in libde265 NAL Parsing

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

Publication date: 2026-09-24

Last updated on: 2026-09-24

Assigner: MITRE

Description

libde265 commit 4d45a6b contains a NULL pointer dereference vulnerability in the NAL parsing path. When de265_push_NAL() is called with a zero-length NAL unit, the resulting NAL_unit may retain a NULL backing buffer, which is subsequently passed as the destination argument to memcpy() in NAL_unit::set_data(). Although the copy length is zero, this violates the nonnull requirement of memcpy() and results in undefined behavior, causing process termination in UBSan-instrumented builds and denial of service.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-24
Last Modified
2026-09-24
Generated
2026-09-24
AI Q&A
2026-09-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

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 a NULL pointer dereference in the libde265 library. When a zero-length NAL unit is passed to de265_push_NAL(), it creates a NAL_unit with a NULL backing buffer. This NULL pointer is then used as the destination in a memcpy() call, violating the function's nonnull requirement and causing undefined behavior. In builds with sanitizers like UBSan, this triggers a process termination and denial of service.

Detection Guidance

To detect this vulnerability, monitor for crashes or SIGILL signals (exit code 132) in applications using libde265 when processing zero-length NAL units. Check logs for undefined behavior errors in UBSan-instrumented builds. Validate input lengths in NAL units before processing.

Impact Analysis

This vulnerability can cause applications using libde265 to crash or terminate unexpectedly when processing malformed video data. In production environments, this leads to service disruptions and potential denial of service. Systems relying on libde265 for video decoding may become unstable or unresponsive.

Mitigation Strategies

Update libde265 to a patched version that includes input validation for NAL units. Ensure zero-length NAL units are rejected early in de265_push_NAL and NAL_Parser::push_NAL functions. Add null checks in NAL_unit::set_data and NAL_unit::append_data methods.

Chat Assistant

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

EPSS Chart