Search K
Appearance
Appearance
Other ways to support HackTricks:
Bug bounty tip: sign up for Intigriti, a premium bug bounty platform created by hackers, for hackers! Join us at https://go.intigriti.com/hacktricks today, and start earning bounties up to $100,000!
objection - Runtime Mobile Exploration
Objection is a runtime mobile exploration toolkit, powered by Frida. It was built with the aim of helping assess mobile applications and their security posture without the need for a jailbroken or rooted mobile device.
Note: This is not some form of jailbreak / root bypass. By using objection, you are still limited by all of the restrictions imposed by the applicable sandbox you are facing.
The goal of objection is let the user call the main actions that offers Frida. Otherwise, the user will need to create a single script for every application that he wants to test.
For this tutorial I am going to use the APK that you can download here:
Or from its original repository (download app-release.apk)
pip3 install objectionMake a regular ADB conection and start the frida server in the device (and check that frida is working in both the client and the server).
If you are using a rooted device it is needed to select the application that you want to test inside the --gadget option. in this case:
frida-ps -Uai
objection --gadget asvid.github.io.fridaapp exploreNot all possible commands of objections are going to be listed in this tutorial, only the ones that I have found more useful.
Some interesting information (like passwords or paths) could be find inside the environment.
env.ClZmWmZ3.png)
frida.CL8nwkux.png)
file download <remote path> [<local path>]
file upload <local path> [<remote path>]import <local path frida-script>android sslpinning disable #Attempts to disable SSL Pinning on Android devices.android root disable #Attempts to disable root detection on Android devices.
android root simulate #Attempts to simulate a rooted Android environment.android shell_exec whoamiandroid ui screenshot /tmp/screenshot
android ui FLAG_SECURE false #This may enable you to take screenshots using the hardware keysIn a real application we should know all of the information discovered in this part before using objection thanks to static analysis. Anyway, this way maybe you can see something new as here you will only have a complete list of classes, methods and exported objects.
This is also usefull if somehow you are unable to get some readable source code of the app.
android hooking list activities.DemQzKdx.png)
android hooking list services
android hooking list receiversFrida will launch an error if none is found
android hooking get current_activity.DLnw8-E5.png)
Lets start looking for classes inside our application
android hooking search classes asvid.github.io.fridaapp.CpBmk-Cm.png)
Now lets extract the methods inside the class MainActivity:
android hooking search methods asvid.github.io.fridaapp MainActivity.DEbsi4DH.png)
Lets figure out wich parameters does the methods of the class need:
android hooking list class_methods asvid.github.io.fridaapp.MainActivity.B-igBvuy.png)
You could also list all the classes that were loaded inside the current applicatoin:
android hooking list classes #List all loaded classes, As the target application gets usedmore, this command will return more classes.This is very useful if you want to hook the method of a class and you only know the name of the class. You coul use this function to search which module owns the class and then hook its method.
From the source code of the application we know that the function sum() from MainActivity is being run every second. Lets try to dump all possible information each time the function is called (arguments, return value and backtrace):
android hooking watch class_method asvid.github.io.fridaapp.MainActivity.sum --dump-args --dump-backtrace --dump-return.CeqBvwqE.png)
Actually I find all the methods of the class MainActivity really interesting, lets hook them all. Be careful, this could crash an application.
android hooking watch class asvid.github.io.fridaapp.MainActivity --dump-args --dump-returnIf you play with the application while the class is hooked you will see when each function is being called, its arguments and the return value.
.DruYoh0E.png)
From the source code you can see that the function checkPin gets a String as argument and returns a boolean. Lets make the function always return true:
.CjvVBjs8.png)
Now, If you write anything in the text box for the PIN code you will see tat anything is valid:
.DepGih7x.png)
Search for and print live instances of a specific Java class, specified by a fully qualified class name. Out is the result of an attempt at getting a string value for a discovered objection which would typically contain property values for the object.
android heap print_instances <class>.CaxOh1cZ.png)
You can play with the keystore and intents using:
android keystore list
android intents launch_activity
android intent launch_servicememory dump all <local destination> #Dump all memory
memory dump from_base <base_address> <size_to_dump> <local_destination> #Dump a partmemory list modules.rlwI5CcI.png)
At the bottom os the list you can see frida:
.CUWqcpIk.png)
Lets checks what is frida exporting:
.B5dFArgE.png)
You can alse search and write inside memory with objection:
memory search "<pattern eg: 41 41 41 ?? 41>" (--string) (--offsets-only)
memory write "<address>" "<pattern eg: 41 41 41 41>" (--string)You cals can use the command sqlite to interact with sqlite databases.
exitBug bounty tip: sign up for Intigriti, a premium bug bounty platform created by hackers, for hackers! Join us at https://go.intigriti.com/hacktricks today, and start earning bounties up to $100,000!
Other ways to support HackTricks: