python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Soot - Map from java class to jimple
With the following code I can get the jimple representation of a java .class file:
soot.Main.main(args);
SootClass mainClass = Scene.v().getMainClass();
String methodSignature ...
MissSirius
Votes: 0
Answers: 1
Soot - Get JimpleBody from a CFG
I'd like to get UnitGraph from a Java Class.
I load it by ClassFile and get the method_info of main().
Then I create a CFG and try to convert it into a UnitGraph.
My method is to get JimpleBody of the...
MissSirius
Votes: 0
Answers: 1
How to correctly insert ids to an apk through instrumentation?
I'm doing instrumentation on an apk to add more ids (like in R.id.name) and set id for a specific widget, but I noticed something interesting:
If I set an existing id (by "existing" I mean ...
WatashiJ
Votes: 0
Answers: 1