SSL Pinning Bypass for iOS — iptables (OpenVPN + iptables tr...#2039
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
SSL Pinning Bypass for iOS — iptables (OpenVPN + iptables tr...#2039carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/SahilH4ck4you/iOS-SSL-pinning-bypass-without-jalibreak Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> iOS Pentesting (or Android Applications Pentesting) -> Burp Suite Configuration / MITM / SSL Pinning Bypass (add subsection: Transparent proxying via OpenVPN + iptables REDIRECT)". 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 this repository is
A GitHub repo titled “SSL Pinning Bypass for iOS — iptables” that provides bash scripts to build a repeatable traffic interception lab for iOS apps without jailbreaking, by forcing the device’s traffic through a researcher-controlled gateway and then transparently redirecting HTTP/HTTPS (80/443) to a local interception proxy (e.g., Burp Suite or mitmproxy) using OpenVPN + iptables NAT.
Importan...
🔧 Technical Details
tun0, then add iptables NAT rules that redirect TCP flows destined to ports80and443to a local interception proxy port (e.g.,8080). This forces traffic into the proxy without configuring a client-side proxy per app/device, enabling scalable testing and capture of app traffic.2) “Invisible proxying” requirement for transparent mode: When redirecting traffic at L3/L4, the proxy must accept connections that were not explicitly configured to talk to it (i.e., transparent mode). Tools like Burp Suite support this via an “invisible proxying” option so the proxy can handle requests originally intended for arbitrary hosts/ports.
3) Trust establishment for HTTPS decryption: To decrypt HTTPS in a MITM proxy, install the proxy’s CA on the device so t...
🤖 Agent Actions
Updated burp-configuration-for-ios.md with a new subsection covering transparent interception through an OpenVPN gateway plus
iptablesPREROUTING/POSTROUTINGNAT, Burp invisible proxying, CA trust requirements, and the key limitation that this does not itself bypass real certificate pinning.I kept the change in a single existing iOS Burp page, added the missing technical workflow and example rules, and appended a final
## Referencessection with the GitHub repo and PortSwigger invisible proxy documentation. Verified the result with a file reread andgit diff; no broader test/build step was run.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.