IDA 7.0 如何使用 IDAGolangHelper插件

Background

现在时间是2020年2月15日 星期六
IDA插件地址
在Macos 上使用 IDA Pro 7.0

问题

由于现在IDAGolangHelper支持IDA Pro 7.4,可能对低版本的IDAPython支持不太友好。由于某些问题(qiong),无法更换到最新IDA版本,因此要想在IDAPro7.0上使用这个插件,需要进行一些代码上的修改。

Solution

  1. 下载项目 git clone https://github.com/sibears/IDAGolangHelper
  2. 修改文件 GO_Utils/__init__.py,将第16行self.bt_obj = Utils.get_bitness(ida_ida.inf_get_min_ea())替换为self.bt_obj = Utils.get_bitness(idc.BeginEA())
  3. 如果仍然不行,继续修改文件 GO_Utils/Gopclntab.py, 在31行while possible_loc != idc.BADADDR:下面增加一行return possible_loc
  4. 使用IDA->File->Script File 打开IDAGolangHelper项目中的go_entry.py。
  5. 选择Go版本(默认1.2),点击Rename functions
  6. 大功告成

你可能感兴趣的:(IDA,安全)