Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://medium.com/@justmobilesec/practical-mobile-traffic-interception-1481e33d974e Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting (SSL pinning bypass / traffic interception) and Mobile Pentesting -> iOS Pentesting (SSL pinning bypass / MITM); optionally add a subsection/note for Flutter apps ignoring system proxy + using socket-level redirection (frida4burp)". 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
The provided “blog content” appears blocked by Medium’s anti-bot page (“Enable JavaScript and cookies to continue”), so the original article text is not available to verify. Therefore, this summary only restructures and clarifies the content that was already present in the provided draft, without adding new claims.
This write-up is a practical playbook for intercepting modern mobile app traffic (Android + iOS) when the classic approach (set device proxy + install proxy CA + confirm browser traf...
🔧 Technical Details
Modern mobile MITM often fails because (1) newer Android versions restrict system trust-store modification and apps may ignore user CAs, (2) apps implement SSL pinning/custom trust logic, and (3) some frameworks (notably Flutter) bypass OS proxy settings entirely, yielding “no traffic” even when proxy+CA are configured. The practical approach is to diagnose whether the failure is trust, pinning, or routing, then apply the matching fix: (a) restore trust (system CA injection or modules that promote user certs), (b) bypass pinning via runtime hooks (Frida/Codeshare or tools like Objection/SSL KillSwitch on iOS), and (c) force routing through the proxy using socket-level redirection (e.g., frida4burp), potentially chaining redirection with certificate injection and unpinning for pinned Flutter apps.
🤖 Agent Actions
Updated
mobile-pentesting/android-app-pentesting/flutter.mdwith a practical MITM workflow extension: added socket-level redirection guidance (e.g., frida4burp) to force Flutter apps that ignore OS proxies through Burp, integrated it into the TLS bypass steps, clarified Android/iOS usage, and appended the blog as a reference.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.