Frida Android-
Frida Android-
+++++++++++++++++++++++++++
1 – Installation of frida
Install pip and python3
install frida
then-->
cd /data/local/tmp
adb push cert-der.cer /data/local/tmp
adb shell
mv cert-der.cer cert-der.crt
(cert-der.cer) -->this is burp certificate
+++++++++++++++++++++++++++
1 – Installation of frida
Install pip and python3
install frida
then-->
cd /data/local/tmp
adb push cert-der.cer /data/local/tmp
adb shell
mv cert-der.cer cert-der.crt
(cert-der.cer) -->this is burp certificate
or-
You can just use the command line to unzip it:
#unzip it
unxz frida-server-15.1.14-android-x86.xz
And then the following steps would be:
#change the name
mv frida-server-15.1.14-android-x86.xz frida-server
#push to device
adb push frida-server /data/local/tmp
#change permissions
adb shell "chmod 755 /data/local/tmp/frida-server"
#Run frida-server
adb shell "/data/local/tmp/frida-server
2-Download frida-server (for the target) and Setup frida-server on the phone-
Depending on android download the frida-server (in my case it frida-server-12.6.9-android-x86)
Next-->
adb push frida-server-12.6.9-android-x86 /data/local/tmp/frida-server
chmod 777 frida-server
./frida-server &
3-Inject script into the app-
frida-ps -U
frida -U -f <app process name> -l pinn.js --no-pause
Note-
-f --> Package name.
-l --> location of the script.
--no-pause # automatically start main thread after startup.
Done!!!
Comments
Post a Comment