Hexrays Python Binding for IDA 6.1 & Hexrays 1.5 python 2.7 :cool:
original code
Source http://techbliss.org/threads/hexrays-python-binding-for-ida-6-1-hexrays-1-5.479/
附件 86876
代码:
# import the module in the interpreter context
import hexrays
# decompile function at 0x402010
c = hexrays.decompile(0x402010)
# print decompiled text
print str(c)
# access local variable names
print [str(v.name) for v in c.lvars]
代码:
https://github.com/EiNSTeiN-/hexrays-python
附件 86876