Initial commit: Rightmove fetch, database, caching, poetry etc.
- Fetching rightmove listing api - Memoizing query - Writing to sqlite database with sqlalchemy - Poetry dependencies
This commit is contained in:
commit
4ee7ae16c4
12 changed files with 3236 additions and 0 deletions
47
GUIDE
Normal file
47
GUIDE
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
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
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue