Ida
记录一些ida api的技巧
获得范围内数据¶
buf = idaapi.get_many_bytes(start, end)
buf.encode('hex')
buf = idaapi.get_many_bytes(start, end)
buf = buf.encode('hex')
two_hex_char_seq = map(operator.add, buf[::2], buf[1::2])
c_array = "{0x" + ", 0x".join(two_hex_char_seq) + "}"
F5 处理¶
https://blog.csdn.net/lixiangminghate/article/details/78820388
插件¶
golang逆向:https://github.com/sibears/IDAGolangHelper rizzo恢复函数签名:https://github.com/fireundubh/IDA7-Rizzo
本页面的全部内容在 CC BY-NC-SA 4.0 协议之条款下提供,附加条款亦可能应用。