Over the past few years, several AI-powered features have been added to mobile phones that allow users to better search and understand their messages. One effect of this change is increased 0-click attack surface, as efficient analysis ofte

Google's Pixel 9 devices are susceptible to a zero-click exploit chain that targets the Dolby Unified Decoder (UDC), a component responsible for processing Dolby Digital and Dolby Digital Plus audio formats. This vulnerability allows for arbitrary code execution within the mediacodec context of the device, forming the first stage of a more complex attack. The exploit chain was developed by Project Zero to demonstrate the practical implications of media decoder vulnerabilities and to highlight the effectiveness of zero-click attacks in modern Android security environments.
The issue stems from how the Dolby Unified Decoder handles Extensible Metadata Delivery Format (EMDF) data, which is embedded within audio streams. The decoder processes this data from a "skip buffer" after identifying a specific syncword. A key part of the EMDF structure is the `emdf_container_length` field, which specifies the size of the metadata container. However, the decoder's implementation lacks a proper check for the size of this container relative to the data available in the skip buffer.
Specifically, the decoder can read up to 0x1FF bytes per audio block from the bitstream into the skip buffer. Within this buffer, it looks for an EMDF container, defined by a syncword and a length field. The vulnerability arises because the `emdf_container_length` can be declared larger than the actual amount of data present in the skip buffer, which is constrained by the `skipl` field.
When the decoder attempts to read the EMDF payload based on the declared `emdf_container_length`, it can read beyond the bounds of the allocated buffer. While the decoder allocates memory for the EMDF payload, a flawed integer overflow check in the memory allocation function, `ddp_udc_int_evo_malloc`, can lead to a smaller-than-expected buffer being allocated. This occurs when the calculated total allocation size falls within a specific range that causes an integer overflow on 64-bit systems.
Despite the potential for a large write, the exploit is mitigated by a read bounds check within the `ddp_udc_int_evo_brw_read` function. This function checks against the `emdf_container_length` to ensure it doesn't read beyond the container's declared size. However, this check also allows an attacker to control the size of the overflow and the values written out of bounds, up to the limit of the skip buffer's capacity. This capability, termed "buffer overrun," provides a powerful primitive for attackers.
Furthermore, the vulnerability includes a data leak. The EMDF content is written to the skip buffer based on `skipl`, but the EMDF container's declared size (`emdf_container_length`) dictates how much data the bit reader attempts to process. If `emdf_container_length` is larger than `skipl`, the bit reader will attempt to access data beyond the skip buffer's boundaries, potentially revealing information or enabling further exploitation.
The Dolby Unified Decoder is integrated into various platforms, including Android, iOS, and media streaming devices. On the Pixel 9, it is found in the `/vendor/lib64/libcodec2_soft_ddpdec.so` library. The vulnerabilities discussed, CVE-2025-54957 and CVE-2025-36934, were addressed by Google as of January 5, 2026.
This research, detailed in a series of blog posts, aims to educate defenders about the nature of zero-click attacks, the efficacy of media decoder vulnerabilities, and the strengths and weaknesses of Android's security measures. The subsequent parts of the series will delve into privilege escalation from the mediacodec context to the kernel and offer recommendations for preventing similar exploits.

JetBrains is urging Cadence users to revoke and rotate all credentials following a security incident last month in which unidentified threat actors exploited a recently disclosed critical vulnerability in TeamCity to breach its own environment. "Cadence users should immediately revoke or rotate all credentials and secrets that may have been used to run their Cadence executions," JetBrains said.
A weakness has been identified in Tenda CP3 27.5.57.101. This issue affects some unknown processing of the file Net/NetCheckPing.cpp. This manipulation of the argument interface_name/host causes os command injection. The attack can be initiated remotely.
A security flaw has been discovered in Tenda CP3 27.5.57.101. This vulnerability affects the function SystemAsh of the file Apis/system.c of the component Kylin. The manipulation of the argument AlarmVoiceURL results in os command injection. It is possible to launch the attack remotely.

OpenAI has announced a $1 billion commitment to provide subsidized access to its Daybreak AI cybersecurity tools for under-resourced critical infrastructure defenders. The initiative, named Daybreak for Frontline Defenders, will offer AI models, training, and technical support over the next six months, prioritizing water and wastewater utilities, electric grid operators, and local government entities. This move aims to equip organizations with limited budgets and staff against increasingly sophisticated cyber threats.

Attackers are exploiting a new unpatched vulnerability in Magento Open Source and Adobe Commerce that lets them run malicious code on an online store's server without logging in, Dutch e-commerce security company Sansec said in an advisory published on September 5. Sansec, which discovered the flaw and named it StyleSmuggler, said attacks started on September 4. "Sansec is publishing early
In BPF instructions that load/store a value from/to a scratch memory register the register index is an unsigned 32-bit integer and must not exceed 15, but libpcap BPF interpreter does not validate the value. In particular uncommon use cases a crafted filter program can cause the interpreter to try reading and writing the OS process memory in the 16GiB starting at the current stack frame on 64-bit architectures and in the entire address space on 32-bit architectures.