Matthew Shao

Results 12 comments of Matthew Shao

We have not tested on object files, but it should work well if you set the `-entry` address properly. Unfortunately, MIPS architecture is more tricky than it looks, because of...

可以按照以下步骤尝试添加: 1. 在Architecture类中添加MIPS相关的信息,包括FLAG_INDEXES, SP_INDEXES, getPcKSet等,注意mips的delay slot机制可能需要特殊处理。 https://github.com/KeenSecurityLab/BinAbsInspector/blob/4c8495aef315cbd2d9f6976913d1877d0bc56a9a/src/main/java/com/bai/util/Architecture.java#L14 2. 修改完成以后应该就可以对mips目标进行分析了,运行过程可能出现报错,需要详细分析原因修改对应代码。主要关注PcodeVisitor中是否有未实现的指令。 欢迎提交相关pr。