Bypassing SSL Pinning in Flutter-Based iOS Applications#2312
Open
carlospolop wants to merge 1 commit into
Open
Bypassing SSL Pinning in Flutter-Based iOS Applications#2312carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://medium.com/@drhatab/bypassing-ssl-pinning-in-flutter-based-ios-applications-54f420d2f1a1 Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting > iOS Pentesting > iOS Burp Suite Configuration / iOS Pentesting without Jailbreak; possibly add a Flutter iOS traffic interception note". 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 blog post explains a practical mobile pentesting technique for intercepting HTTPS traffic from Flutter-based iOS applications when the usual iOS proxy + Burp Suite setup fails. The method does not rely on Frida and can be performed on either a jailbroken or non-jailbroken iPhone.
Problem: Flutter iOS applications handle networking differently from traditional native iOS apps. Native iOS apps commonly use Apple’s NSURLSession st...
🔧 Technical Details
VPN-layer interception for Flutter iOS apps: Flutter iOS apps may not use Apple’s native NSURLSession networking stack. Instead, they can use Dart’s HttpClient and BoringSSL compiled into the application binary. Because of this, the app may ignore iOS Wi-Fi proxy settings and the system trust store, making the traditional “install Burp CA + configure Wi-Fi proxy” approach ineffective. A practical workaround is to route all device traffic through a VPN/proxy app, such as Potatso, and forward it to Burp Suite. This moves interception from the application proxy layer to the network interface layer.
Using Burp invisible proxying with transparently redirected traffic: When traffic is redirected by a VPN/proxy tool instead of being explicitly sent to Burp as a normal proxy-aware HTTP request, Burp may need Support Invisible Proxying enabled on the listener. This allows Burp to proce...
🤖 Agent Actions
Done.
Updated:
src/mobile-pentesting/ios-pentesting/burp-configuration-for-ios.mdWhat I added:
HttpClient/ BoringSSL stack)Validation:
git diff --checkmdbookandmarkdownlint-cli2were not installed in this environment, so full build/lint wasn’t possible hereThis PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.