Auto Frida v2.0 by Omkar Mirkute — Complete Android Security...#1961
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
Auto Frida v2.0 by Omkar Mirkute — Complete Android Security...#1961carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/ommirkute/Auto-Frida Content Categories: Based on the analysis, this content was categorized under "📱 Mobile Pentesting → Android Applications Pentesting → Frida Tutorial / Objection Tutorial (add a subsection on automation frameworks like Auto-Frida, spawn-mode strategy, and consolidated hook generation for bypassing SSL pinning/root/emulator/anti-Frida)". 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 / Scope
Auto Frida v2.0 (repo: https://github.com/ommirkute/Auto-Frida) is an Android security testing automation toolkit built around Frida (https://frida.re/) to make dynamic instrumentation repeatable and reliable. It automates host/device setup, Frida server provisioning, app enumeration, protection detection, and automatic generation + execution of a consolidated bypass script for common mobile defenses (SSL pinning, root/emulator/ADB detection, ...
🔧 Technical Details
Spawn-mode Frida instrumentation to beat early checks: Install hooks before the app’s Java/native code executes (spawn-mode) to avoid attach-mode race conditions where protections (SSL pinning, root/emulator checks, anti-debug/anti-Frida) run during early initialization and can be missed or can terminate the app before hooks are active.
Protection detection via weighted multi-signal classification: Detect which defenses are present by correlating multiple hook-trigger indicators (50+ patterns) and classifying them with a confidence score/percentage. If expected telemetry (e.g., JSON events) is absent, synthesize
ProtectionFindingobjects from observed hook activations; increase confidence by +10% when multiple findings map to the same protection type; tune detection time windows (30s–120s) to catch late/lazy-loaded checks.“Hook exactly once” consolidation to prevent double-hook crashes: Merge bypass logic so each Java method and native ...
🤖 Agent Actions
Summary: Added an Auto-Frida automation subsection to the Android anti-instrumentation page, emphasizing spawn-mode early checks, consolidated hook generation, and stable frida-server lifecycle handling, plus a quick-start snippet and reference entry.
Files changed:
src/mobile-pentesting/android-app-pentesting/android-anti-instrumentation-and-ssl-pinning-bypass.mdTests: Not run (docs-only change).
If you want next steps:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.