CVE-2025-10184 OnePlus OxygenOS Telephony provider permissio...#1429
Merged
carlospolop merged 2 commits intomasterfrom Sep 30, 2025
Conversation
… permissi... - Remove searchindex.js (auto-generated file)
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.rapid7.com/blog/post/cve-2025-10184-oneplus-oxygenos-telephony-provider-permission-bypass-not-fixed/ Content Categories: Based on the analysis, this content was categorized under "Generic Hacking -> Android Pentesting -> Content Providers (permission bypass & SQLi)". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
55d15da to
919cd5c
Compare
Collaborator
Author
|
merge |
88a07c5 to
73b307c
Compare
…lephony_provide_20250924_125101
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
CVE-2025-10184 — OnePlus OxygenOS Telephony provider permission bypass via blind SQL injection (NOT FIXED)
Affected/confirmed builds
• OnePlus 8T / KB2003 — TelephonyProvider pkg 3.4.135, OxygenOS 12, build KB2003_11_C.33
• OnePlus 10 Pro 5G / NE2213 — pkg 14.10.30, OxygenOS 14, build NE2213_14.0.0.700(EX01)
• OnePlus 10 Pro 5G / NE2213 — pkg 15.30.5, OxygenOS 15, build NE2213_15.0.0.502(EX01)
• OnePlus 10 Pro 5G / NE2213 — pkg 15.30.10, OxygenOS 15, build ...
🔧 Technical Details
Abusing content provider write permission defaults: If an Android content provider sets
readPermissionbut omitswritePermission, unprivileged apps can invokeinsert/update/deleteprovided those methods are implemented. Search OEM-modified providers for exported components missingwritePermission, then test write operations viaContentResolveroradb content.WHERE-clause SQL injection on update(): Some providers pass the caller-supplied WHERE string directly to
SQLiteDatabase.update(). Inject subqueries that read sensitive tables in the same DB (e.g.,sms). If directquery()is protected, piggyback onupdate()to exfiltrate via inference.Blind inference oracle using rows-affected and constraint errors: Treat
update() > 0or a "UNIQUE constraint failed" exception as TRUE; otherwise FALSE. Useunicode...🤖 Agent ActionsI analyzed the Rapid7 post and found concrete, reusable Android pentesting techniques that weren’t fully covered in HackTricks, specifically:
Repository exploration and chosen locations:
Changes implemented (as files were modified via PR tools):
Why these updates:
No new files were created; content was integrated into the most relevant existing pages. References were updated per guidelines at the end of each modified file.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.
🗑️ File Cleanup