CVE-2026-10773 Vulnerability Analysis & Exploit Details

CVE-2026-10773
Vulnerability Scoring

5.4
/10
Significant Risk

Security assessments indicate that CVE-2026-10773 presents a notable risk, potentially requiring prompt mitigation.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Adjacent_network
    Attack Vector Under Analysis
  • Privileges Required: None
    No privileges are required for exploitation.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2026-10773 Details

Status: Analyzed

Last updated: 🕛 01 Sep 2026, 00:16 UTC
Originally published on: 🕐 01 Aug 2026, 13:16 UTC

Time between publication and last update: 30 days

CVSS Release: version 3

CVSS3 Source

vulnerabilities@zephyrproject.org

CVSS3 Type

Secondary

CVSS3 Vector

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

CVE-2026-10773 Vulnerability Summary

CVE-2026-10773: The DHCPv4 client helper net_dhcpv4_msg_type_name() in subsys/net/lib/dhcpv4/dhcpv4.c indexes a static 8-element const char * name table after a faulty bounds check. The guard used msg_type <= sizeof(name) instead of msg_type <= ARRAY_SIZE(name); sizeof returns the byte size of the pointer array (32 on 32-bit, 64 on 64-bit targets) rather than the element count of 8, so message-type values from 9 up to that byte size pass the check and cause name[msg_type - 1] to read past the end of the array. The msg_type value originates from the DHCP MESSAGE TYPE option, which is read as an unchecked raw byte from a received packet (net_pkt_read_u8) and passed unmodified into the lookup. A DHCP server, or any host able to inject a spoofed DHCP reply onto the client's link, can therefore drive the index out of bounds. The out-of-range slot yields a garbage const char * that is then dereferenced by a %s log conversion. The lookup is reached only from a debug log statement (NET_DBG / LOG_DBG), so the out-of-bounds read is triggerable only when the DHCPv4 log module is built at DEBUG level (CONFIG_NET_DHCPV4_LOG_LEVEL_DBG), which is not the default configuration. When that condition holds, the result is an out-of-bounds read and a wild-pointer dereference: most likely a crash of the DHCP client (denial of service) and potentially disclosure of an adjacent pointer's contents through the log output. The fix replaces sizeof with ARRAY_SIZE, restoring the correct 1..8 acceptance window.

Assessing the Risk of CVE-2026-10773

Access Complexity Graph

The exploitability of CVE-2026-10773 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2026-10773

With low attack complexity and no required privileges, CVE-2026-10773 is an easy target for cybercriminals. Organizations should prioritize immediate mitigation measures to prevent unauthorized access and data breaches.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2026-10773, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2026-10773, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: Low
    CVE-2026-10773 could lead to minor leaks of non-critical information without major privacy breaches.
  • Integrity: None
    CVE-2026-10773 poses no threat to data integrity.
  • Availability: Low
    CVE-2026-10773 may slightly degrade system performance without fully affecting service availability.

CVE-2026-10773 References

External References

CWE Common Weakness Enumeration

CWE-125

CAPEC Common Attack Pattern Enumeration and Classification

  • Overread Buffers CAPEC-540 An adversary attacks a target by providing input that causes an application to read beyond the boundary of a defined buffer. This typically occurs when a value influencing where to start or stop reading is set to reflect positions outside of the valid memory location of the buffer. This type of attack may result in exposure of sensitive information, a system crash, or arbitrary code execution.

Vulnerable Configurations

  • cpe:2.3:o:zephyrproject:zephyr:3.6.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.6.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.6.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.1:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.1:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.1:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.1:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.2:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.2:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:3.7.2:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:3.7.2:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.0.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.0.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.0.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.1.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.1.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.1.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.2.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.2.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.2.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.2.1:*:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.2.1:*:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.3.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.3.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.3.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.3.1:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.3.1:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.0:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.0:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc1:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc2:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc2:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc3:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.0:rc3:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.1:-:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.1:-:*:*:*:*:*:*
  • cpe:2.3:o:zephyrproject:zephyr:4.4.1:rc1:*:*:*:*:*:*
    cpe:2.3:o:zephyrproject:zephyr:4.4.1:rc1:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2026-10773: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2026-90555 – vLLM versions before 0.28.0 fail to validate audio sample rate headers in the transcription endpoint, allowing authenticated clients to bypass dura...
  • CVE-2026-90554 – vLLM versions >=0.10.2 and <0.28.0 do not apply any audio decode-size or duration limit when extracting audio from video input for NanoNemotronVL m...
  • CVE-2026-90553 – vLLM before 0.28.0 contains a remote code execution vulnerability in the LlavaOnevision2 processor loader that ignores the trust_remote_code parame...
  • CVE-2026-90552 – WWBN AVideo through commit c3edcc274c389816d434acadac07ee78eaf330c1 fails to validate playlist ownership in the Playlists_schedules/list.json.php a...
  • CVE-2026-90551 – WWBN AVideo through commit c3edcc274c389816d434acadac07ee78eaf330c1 fails to validate playlist ownership in the video_from_program API endpoint, al...