mirror of
https://github.com/stulle123/kakaotalk_analysis.git
synced 2025-05-07 12:06:09 +00:00
Add Frida instructions
This commit is contained in:
parent
c1270f5e27
commit
670cf9d538
52
README.md
52
README.md
|
@ -25,15 +25,13 @@ sdkmanager "platforms;android-30"
|
|||
sdkmanager "system-images;android-30;google_apis;arm64-v8a"
|
||||
# Install Platform Tools
|
||||
brew install android-platform-tools
|
||||
# Create AVD Image
|
||||
# Create AVD Image (without Google Play Store)
|
||||
avdmanager create avd -n kakao -k "system-images;android-30;google_apis;arm64-v8a"
|
||||
# Start the emulator once and shut it down (this will create the 'config.ini' file)
|
||||
emulator @kakao
|
||||
# Configure AVD Image
|
||||
sed -i -r 's/hw.keyboard = no/hw.keyboard = yes/' ~/.android/avd/kakao.avd/config.ini
|
||||
sed -i -r 's/hw.mainKeys = yes/hw.mainKeys = no/' ~/.android/avd/kakao.avd/config.ini
|
||||
# Start the emulator
|
||||
emulator @kakao
|
||||
```
|
||||
|
||||
## SSH
|
||||
|
@ -58,9 +56,53 @@ exit
|
|||
ssh -p 4444 localhost
|
||||
```
|
||||
|
||||
## Configure Emulator to work with Burp Suite
|
||||
|
||||
- Export Burp's CA certificate in `DER` format
|
||||
- Next, follow these steps:
|
||||
```bash
|
||||
# Convert DER to PEM
|
||||
openssl x509 -inform DER -in burp_ca_cert.der -out burp_ca_cert.pem
|
||||
# Get subject_hash_old
|
||||
openssl x509 -inform PEM -subject_hash_old -in burp_ca_cert.pem | head -1
|
||||
# Rename burp_ca_cert.pem to <hash>.0
|
||||
mv burp_ca_cert.pem 9a5ba57.05
|
||||
# Start emulator and copy certificate
|
||||
emulator @kakao -writable-system -http-proxy 127.0.0.1:8080
|
||||
adb root
|
||||
adb remount
|
||||
adb push 9a5ba57.05 /system/etc/security/cacerts/
|
||||
adb shell "chmod 644 /system/etc/security/cacerts/9a5ba57.05"
|
||||
adb reboot
|
||||
```
|
||||
**Note**, that you have to start the emulator with `-writable-system`. Otherwise, Burp's certificate doesn't show up in Androids's trusted CA store (`Settings` -> `Security` -> `Encryption and credentials` -> `Trusted credentials`) 🙈
|
||||
|
||||
## Setup Frida to disable Certificate Pinning
|
||||
|
||||
```bash
|
||||
# Install Frida
|
||||
pip3 install frida-tools
|
||||
# Download frida-server from https://github.com/frida/frida/releases
|
||||
wget https://github.com/frida/frida/releases/download/16.0.15/frida-server-16.0.15-android-arm64.xz -O frida-server.xz
|
||||
unxz frida-server.xz
|
||||
adb root
|
||||
adb push frida-server /data/local/tmp/
|
||||
adb shell "chmod 755 /data/local/tmp/frida-server"
|
||||
# Start frida-server (this might hang, but frida-server is started anyways)
|
||||
adb shell "/data/local/tmp/frida-server &"
|
||||
# Quick test
|
||||
frida-ps -U
|
||||
# Export Burp's CA certificate in DER format and copy to emulator
|
||||
adb push burp_ca_cert.der /data/local/tmp/cert-der.crt
|
||||
# Disable Certificate Pinning
|
||||
frida --codeshare pcipolloni/universal-android-ssl-pinning-bypass-with-frida -U -f com.kakao.talk
|
||||
```
|
||||
|
||||
## Misc Commands
|
||||
|
||||
```bash
|
||||
# Start KakaoTalk
|
||||
adb shell am start com.kakao.talk
|
||||
# Start Termux
|
||||
adb shell am start com.termux/.HomeActivity
|
||||
# List 3rd-party Packages
|
||||
|
@ -68,9 +110,11 @@ adb shell pm list packages -f -3
|
|||
# Get Activities of an app
|
||||
PACKAGE=com.termux
|
||||
adb shell dumpsys package | grep -Eo $(printf "^[[:space:]]+[0-9a-f]+[[:space:]]+%s/[^[:space:]]+" "${PACKAGE}") | grep -oE "[^[:space:]]+$"
|
||||
# Launch Settings
|
||||
adb shell am start -a android.settings.SETTINGS
|
||||
```
|
||||
|
||||
## Account Setup
|
||||
## KakaoTalk Account Setup
|
||||
|
||||
- Go to https://accounts.kakao.com and create an account:
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue
Block a user