English | 中文
Bypass libcurl (NDK) SSL-Pinning protection presented in some Android apps.
- Frida access to your mobile device
frida -U -f com.example --no-pause -l Frida-libcurlUnpinning.js
U
: Connect to remote devicef
: Spawn specified app--no-pause
: Resume main thread after spawning appl
: Load & run script
frida -U -F -l Frida-libcurlUnpinning.js
U
: Connect to remote deviceF
: Attach to foreground appl
: Load & run script
- iOS libcurl hooking by @Nevermoe
- Q: How does it work?
- A: It’s just
a balloon stretched over a cup. Jk, it simply hooks curl_easy_setopt and blocks options related to SSL-Pinning.