I am playing with Frida and exploring its functionality using an APP where I place hooks on. The app has an enum somewhere:
enum AppMode{ debug, release }
In the app a lot of functions use the following comparison:
public void ExampleFunction(){ AppMode appmode = AppMode.release; if(appmode == AppMode.debug){ ... } }
I am wondering if it is possible with Frida to change the value of 'AppMode.release' in a way so it would be the same value as 'AppMode.debug'. This would be an efficient method into having the whole app act like it is in debug mode.
I searched online for solutions. I am aware that frida can only hook FUNCTIONS but I am wondering, maybe there is a core enum-function that fetches the ordinal of a enumvalue when assigning a variable with an enum value.
Enums are converted to a class and each enum value becomes a
.field public static final enum
. If you compare a value to an enum in an if clause the value of this field is loaded (sget-object
).To get an understanding let's look at an example:
Java code:
Relevant Smali code of
MyEnum
:And this way it is used:
You can see the
sget-object
call that loads the enum value for comparison inif-ne
. So changing the value of the fieldC
will change the value that is loaded for comparison.Frida code:
So you just have to replace
C
from the example withdebug
andA
withrelease
.