CVE-2025-12080 — Wear OS Google Messages ACTION_SENDTO Auto‑... #1528
+47
−12
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
Vulnerability: CVE-2025-12080 affects Google Messages on Wear OS when it is the default SMS/MMS/RCS handler. Any installed app can trigger an ACTION_SENDTO intent with
sms:/smsto:/mms:/mmsto:URIs and cause Google Messages (Wear) to immediately dispatch a message without showing a compose/confirmation UI and without requiringSEND_SMSor other privileged permissions.Why it happens (Android intent flow): On A...
🔧 Technical Details
Intent abuse against default SMS handlers on Wear OS: If an app is the default SMS/MMS/RCS handler and mishandles
Intent.ACTION_SENDTOforsms:/smsto:/mms:/mmsto:URIs, a non-privileged app can trigger message sending by launching the intent directly. Generic pattern:SEND_SMS, any app (or a Tile/Complication that starts activities) can cause silent dispatch if the target app auto-sends instead of presenting a confirmation UI.🤖 Agent Actions
I analyzed the repository and found the most relevant place to document this technique is the existing Android Intent Injection page:
This page already covers Intent abuse patterns, deep links, and intent redirection, making it the ideal spot to add a concise, technical section on abusing ACTION_SENDTO with sms/smsto/mms/mmsto URIs against default SMS handlers, including the Wear OS auto-send behavior.
What I added:
Changes implemented in one file only:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.