Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/secuworm2/frida-android-helper2 Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting (augment Frida/Objection content; add a subsection for tooling/workflows such as adb-reverse+iptables transparent proxying, intent/component invocation automation, and runtime DEX dumping via ART DefineClass hook)". 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
What it is
The repository provides Frida Android Helper (FAH), a Python-based CLI utility that automates common Android pentesting and reverse-engineering tasks via ADB. It connects to the ADB server using the
pure-python-adblibrary (so it can drive device actions programmatically rather than relying only on shelling out toadb).Prerequisites / lab requirements
🔧 Technical Details
Dynamic instrumentation workflow: automate deployment and lifecycle of
frida-serveron a device (start/stop/reboot/update/update <version>) so runtime hooking and security-control bypass testing can begin immediately without manual setup.Traffic interception workflow: configure Android-wide proxy host/port (default
8080), or transparently route traffic through the host by combiningadb reversewith on-deviceiptablesDNAT rules (default8844), enabling transparent-mode proxies (e.g., Burp) to observe/modify app traffic in a controlled test environment.Android component attack-surface workflow: enumerate Activities/Services/Receivers/Providers and trigger them by index/component; for BroadcastReceivers specifically, parse
intent-filteractions from the manifest and emit one copy/pasteam broadcastcom...🤖 Agent Actions
Summary:
Added a new “Frida Android Helper (FAH) workflows” section in
src/mobile-pentesting/android-app-pentesting/README.mdcovering frida-server lifecycle, proxying (global and adb-reverse+iptables DNAT), intent/component automation, and ART DefineClass DEX dumping, plus the blog reference.Files changed:
src/mobile-pentesting/android-app-pentesting/README.mdTests:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.