Flatten repo structure: move crawler/ to root, remove vqa/ and immoweb/
The crawler subdirectory was the only active project. Moving it to the repo root simplifies paths and removes the unnecessary nesting. The vqa/ and immoweb/ directories were legacy/unused and have been removed. Updated .drone.yml, .gitignore, .claude/ docs, and skills to reflect the new flat structure.
This commit is contained in:
parent
e2247be700
commit
eafbc1ac52
221 changed files with 70 additions and 146140 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