- 代码写法
String traceFile = “yourpath”;
PrintStream traceStream = new PrintStream(new FileOutputStream(traceFile), true);
emulator.traceCode(module.base, module.base + module.size).setRedirect(traceStream); - 源码修改
unidbg默认的traceCode,只打印汇编指令,不打印寄存器的值
通过修改源码,可以让其打印变动的寄存器的值
细节暂未补充
unidbg trace 及后面只是都要重新学习。。。。
