47 lines
1 KiB
Text
47 lines
1 KiB
Text
package name: com.rightmove.android
|
|
|
|
frida --codeshare pcipolloni/universal-android-ssl-pinning-bypass-with-frida -f com.rightmove.android
|
|
|
|
|
|
|
|
1. install burp
|
|
2. Add listener 8282
|
|
3. Export certificate in the DER format
|
|
4. convert certificate with command
|
|
```
|
|
# converts from DER to PEM
|
|
openssl x509 -inform DER -in burp.der -out burp.pem
|
|
```
|
|
5. Copy cert to android with the proper name
|
|
```
|
|
# According to https://codeshare.frida.re/@pcipolloni/universal-android-ssl-pinning-bypass-with-frida/ the cert path is hardcoded
|
|
adb push burp.pem /data/local/tmp/cert-der.crt
|
|
```
|
|
6. Add the proxy in the android wifi settings
|
|
```
|
|
# find your own local network ip
|
|
ip addr
|
|
# Open the wifi you are connected to, edit and add port 8282 (from above) and the ip
|
|
|
|
```
|
|
192.168.0.211/24
|
|
|
|
|
|
1. Install frida server on android
|
|
|
|
|
|
4. run Frida
|
|
```
|
|
adb shell "/data/local/tmp/frida-server &"
|
|
```
|
|
5. Check if it runs with
|
|
```
|
|
frida-ps -U
|
|
```
|
|
|
|
6. pin rightmove
|
|
frida -U --codeshare pcipolloni/universal-android-ssl-pinning-bypass-with-frida -f com.rightmove.android
|
|
|
|
|
|
|
|
|