Dynamic Analysis

Tools

  • FRIDA

  • DROZER

  • Runtime Mobile Security (RMS)

  • Objection

FRIDA

Install Frida

pip3 install frida-tools

# Check frida version
frida --version

Download and Install Frida Server on Android

# Download frida server from here
https://github.com/frida/frida/releases

# Send the frida apk to android using adb
$ adb root # might be required
$ adb push frida-server /data/local/tmp/
$ adb shell "chmod 755 /data/local/tmp/frida-server"
$ adb shell "/data/local/tmp/frida-server &"

REFERENCES

Last updated

Was this helpful?