Basic Frida commands
Table of Contents
init#
Frida is a reverse engineering framework which can be used to
installed apps#
The below command will let you view applications which are on the virtual mobile device.
run script#
The below command will run the script on the application.
The source code for the 01-hello.js
file is:
#
Java.perform(function() {
const clsroot = Java.use("com.geekyadmins.a.c");
clsroot.a.implementation = function() {
console.log("touched implimentation a");
return false;
}
});
double script#
In many cases, you might need to inject multiple scripts at the same time. To do that, you could use the following: In terminal 1
Keep the old terminal open and spawn another terminal window and in that execute the following commands:
In the above command, we can see the function parameters dumped in the console.
Read other posts