hexrays-python icon indicating copy to clipboard operation
hexrays-python copied to clipboard

Python bindings for the Hexrays Decompiler

Results 5 hexrays-python issues
Sort by recently updated
recently updated
newest added

There is a small typo in build.py. Should read `distribution` rather than `distibution`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

Hey I saw this plugin and it looks cool, but it looks like it hasn't been updated in a long time. Is there a chance that it will support 7.0+...

I write a IDAPython script. I can run it by `idat -S"script.py" x86_binary.idb`. But when i run `idat -S"script.py" arm_binary.idb`, It didn't work. The statement `idaapi.init_hexrays_plugin()` in script returns false....

IDA crashes when opening .NET files. Repro: Open any .NET file in IDA and it will show a message box immediately: "IDA has encountered a problem...A mini dump file was...

Code to reproduce crash: ``` python hexrays.decompile(here()).treeitems[0] ``` Expected behaviour: - `hexrays.decompile(here()).treeitems[0]` should return first item in `cfuncptr_t.treeitems` Workaround: ``` python c = hexrays.decompile(here()) c.__deref__() c.treeitems[0] ```