python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k 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