Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/ynsmroztas/AndroHunter Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting → Android Applications Pentesting (augment: Intent Injection / Exploiting Content Providers / Webview Attacks & SSL pinning bypass / FileProvider & content:// tricks). Potentially add a small subsection: “On-device Android pentest toolchains (AndroHunter)” with the key techniques and reproduction commands.". 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
Title/Project: AndroHunter (native Android app) — an on-device Android security research toolkit for bug bounty hunters and mobile penetration testers.
What it is / why it matters
AndroHunter bundles common Android app-testing tasks into a single on-device app (Jetpack Compose “dark terminal UI”). It is not a single CVE write-up; instead it is a toolkit meant to find and help exploit recurring Android vulnerability classes across the full attack surface: stat...
🔧 Technical Details
Exported component abuse (Activities/Services/Receivers) via Intent/Broadcast injection: Enumerate exported components from the manifest, then send crafted Intents/broadcasts with attacker-controlled extras, categories, and data URIs. Include file-URI style data (e.g.,
file:///data/...) to probe components that mistakenly trust URIs and pass them to file-handling logic. Use generated ADB commands to reproduce launches/injections (e.g.,adb shell am start -n pkg/activity --es data "payload") and validate outcomes using logcat monitoring.ContentProvider SQL injection probing at the IPC boundary: Enumerate exported providers and test multiple SQLi payload styles (error-based, boolean-based, UNION-based, time-based) to detect injection in provider query/update/delete paths. Also assess provider exposure (readable/writable) and schema disclosure to determine whether the impact is data exfiltration, unauthorized modification, or both.
<...
🤖 Agent Actions
Summary:
Added an “On-device Android pentest toolchains (AndroHunter)” subsection with concise technique-oriented notes and sample commands in
src/mobile-pentesting/android-app-pentesting/README.md.Appended AndroHunter to the References list in
src/mobile-pentesting/android-app-pentesting/README.md.Files changed:
src/mobile-pentesting/android-app-pentesting/README.mdTests:
Next steps:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.