aemmitt-ns/radius2

Trying EsCrackMe.apk with Frida

GanbaruTobi opened this issue · 5 comments

When trying to recreate
how-to-perform-symbolic-execution-of-mobile-apps-with-r2frida-esilsolve i get the following base.odex representation:
grafik

From the video in the blog the code looks quite the same (so i suppose its not a radare issue):
grafik

I try solving with the following code: https://gist.github.com/GanbaruTobi/1821f9c4cedbc98f07a2c15c22bfae5f

Expected result: 0xcafebabe
Got result: 0xbadd000c
The resulting flag is wrong:
grafik

Besides, if u have an idea how to pull the address correctly for each attachment, we could at this to the repo (when its working correctly).

so the second check to make sure the value is correct gets turned into that cset w0, eq instruction, so all you need to do is add a couple lines before evaluating the flag that constrains w0 to be 1 (or nonzero also works here) so let w0 = new_state.registers.get("w0"); new_state.assert(w0);

let me know if this worked so i can close

it worked, but do u have something in radius where a radare2 command can be executed to get an address? So to execute "s :il~foobar" for example? In that case i could make an example that gets the right address.

yes you can execute any command with radius.cmd(...). so something like "s `:il~foobar`; :is symname" should work. on phone right now ill check when im at my workstation