我想使用Soot对Java程序进行静态分析,例如包括控制流程图。

各种tutorials表示,使用Soot的“标准方法”是创建一种主要方法,在该方法中,将自定义转换添加到Soot管道中,然后调用soot.Main.main(...) :

public static void main(String[] args) {
    PackManager.v().getPack("jtp").add(
         new Transform("jtp.gotoinstrumenter", GotoInstrumenter.v()));
    soot.Main.main(args);
}

当然,如果要在命令行工具以外的其他方式中使用Soot,则存在一些严重的限制。例如,我不清楚在程序中多次调用Soot的main方法是否合法。

那么,有谁知道有可能通过更复杂的API直接使用Soot分析工具?

最佳答案

答案是肯定的。在您的主体中,您可以设置要使用的类:

configure("../yourClasspath/");
SootClass sootClass = Scene.v().loadClassAndSupport("className");
sootClass.setApplicationClass();

// Retrieve the method and its body
SootMethod m = c.getMethodByName("methodName");
Body b = m.retrieveActiveBody();

// Instruments bytecode
new YourTransform().transform(b);

之后,您可以构建CFG并进行一些分析。

它遵循configure方法:
public static void configure(String classpath) {

        Options.v().set_verbose(false);
        Options.v().set_keep_line_number(true);
        Options.v().set_src_prec(Options.src_prec_class);
        Options.v().set_soot_classpath(classpath);
        Options.v().set_prepend_classpath(true);

        PhaseOptions.v().setPhaseOption("bb", "off");
        PhaseOptions.v().setPhaseOption("tag.ln", "on");
        PhaseOptions.v().setPhaseOption("jj.a", "on");
        PhaseOptions.v().setPhaseOption("jj.ule", "on");

        Options.v().set_whole_program(true);
    }

07-24 19:47