Pixel 10 Zero-Click-to-Root Dolby CVE-2025-54957 and /dev/vp...#2230
Open
carlospolop wants to merge 1 commit into
Open
Pixel 10 Zero-Click-to-Root Dolby CVE-2025-54957 and /dev/vp...#2230carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://projectzero.google/2026/05/pixel-10-exploit.html Content Categories: Based on the analysis, this content was categorized under "Binary Exploitation / Android or Linux Kernel Exploitation; alternatively Mobile Pentesting / Android Applications Pentesting / Android Media Pipelines Image Parsers for the Dolby zero-click portion". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Google Project Zero explains how a previous Pixel 9 zero-click-to-root exploit chain was adapted to Pixel 10. The original chain used two bugs: a Dolby UDC zero-click vulnerability affecting Android broadly,
CVE-2025-54957, and a Pixel 9 BigWave driver local privilege escalation. For Pixel 10, the Dolby exploit remained mostly portable, but the BigWave privilege-escalation stage had to be replaced because BigWave is not shipped on Pixel 10.1. Updating the Dolby z...
🔧 Technical Details
Exploit porting when compiler hardening changes overwrite targets: When adapting a memory-corruption exploit to a new device or library version, update all version-specific offsets and re-evaluate control-flow or overwrite targets affected by compiler hardening. In this case, Pixel 10 replaced
-fstack-protectorbehavior withRET PAC, so__stack_chk_failwas no longer a usable overwrite target. A practical replacement wasdap_cpdp_init, an initialization routine called once during decoder setup and never again. The abstract trick is to search for one-shot initialization functions or other post-initialization-dead code paths that can be overwritten without destabilizing the process after the exploit has gained control.Unbounded MMIO mmap as a physical-memory read/write primitive: A kernel driver is vulnerable when its
mmaphandler maps a fixed physical device base into userspace but trusts the caller...🤖 Agent Actions
Done.
Updated:
src/binary-exploitation/linux-kernel-exploitation/pixel-bigwave-bigo-job-timeout-uaf-kernel-write.mdWhat I added:
/dev/vpuunboundedmmap()MMIO bugvm->vm_end - vm->vm_startinremap_pfn_range()yields a physical-memory mapping primitivemediacodecto kernel.text/.dataR/WWhy only this:
mmap()exposing contiguous physical memory.Validation:
mdbook buildcould not be executed here becausemdbookis not installed in the environment.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.