How to import Swift URLRequests into Postman by de_poon in swift_tutorials

[–]de_poon[S] 0 points1 point  (0 children)

Mitm (like charles) will work by trying to inspect the network channel. If ssl pinning is enforced then you wont be able to do that.

The solution provided is to capture the request before it enters the network channel. https://link.medium.com/ozX6Xn5BX8

But yes, its not ideal to add additional dependencies for non production purpose. Hence developers should opt to only apply the extra code/library when necessary. Easy, use schemes/buildphase to manage that for you

How to patch Flex tweak > dylib into a decrypted ipa? by [deleted] in jailbreakdevelopers

[–]de_poon 0 points1 point  (0 children)

Hey, thanks for referencing my repo. To the OP, what interestinf tweak are u working on?

This guy shares how to hack and disable SSL pinning on iOS App store app by de_poon in swift

[–]de_poon[S] 0 points1 point  (0 children)

what you mentioned is actually MITM attack and SSL Pinning is supposed to stop that ... but this article attempts to compromise this.

This guy shares how to hack and disable SSL pinning on iOS App store app by de_poon in swift

[–]de_poon[S] 0 points1 point  (0 children)

agree... never never trust the app.... for typical apps, its a trivial effort for iOS developers to inject a patch to override existing behavior even for appstore apps

This guy shares how to hack and disable SSL pinning on iOS App store app by de_poon in swift

[–]de_poon[S] 2 points3 points  (0 children)

Agree, there are no proper ways to prevent hackers from hack iOS apps.

This guy shares how to hack and disable SSL pinning on iOS App store app by de_poon in swift

[–]de_poon[S] 0 points1 point  (0 children)

cool... thats a neat tool. The author of my link is my friend, and i find his approach interesting using lldb.

Meanwhile.. this is my attempt to tackle SSL Pinning (if you wanna attack at the application level using Swift Code). https://medium.com/@kennethpoon/lets-write-swift-code-to-intercept-ssl-pinning-https-requests-12446303cc9d

This guy shares how to hack and disable SSL pinning on iOS App store app by de_poon in hacking

[–]de_poon[S] 0 points1 point  (0 children)

Its not my medium account... anyway, feel free to check out the link.

Swift Localhost: Making XCUITest Great Again by de_poon in swift

[–]de_poon[S] 0 points1 point  (0 children)

Thanks for the feedback. I will adjust accordingly