diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2021-12-14 07:52:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-14 07:52:15 +0100 |
| commit | 1a62826bb03b2b0f8f6e2c4df3d3370e4c0cb8c2 (patch) | |
| tree | 36578b185a81760a9a42831130808f91917b66fd /example/ida/symbol_exec.py | |
| parent | 5331c111268ba5971d19f2c5e741e16bcc959084 (diff) | |
| parent | ad79c3927b8d6bd6b610f11b24246f47679542d2 (diff) | |
| download | focaccia-miasm-1a62826bb03b2b0f8f6e2c4df3d3370e4c0cb8c2.tar.gz focaccia-miasm-1a62826bb03b2b0f8f6e2c4df3d3370e4c0cb8c2.zip | |
Merge pull request #1399 from 0xeb/idafix
Fixed symbexec example to work for newer IDA (7.6)
Diffstat (limited to 'example/ida/symbol_exec.py')
| -rw-r--r-- | example/ida/symbol_exec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ida/symbol_exec.py b/example/ida/symbol_exec.py index ef5db082..e9dc0611 100644 --- a/example/ida/symbol_exec.py +++ b/example/ida/symbol_exec.py @@ -198,7 +198,7 @@ idaapi.register_action(action_translate) if __name__ == '__main__': - idaapi.CompileLine('static key_F3() { RunPythonStatement("symbolic_exec()"); }') + idaapi.compile_idc_text('static key_F3() { RunPythonStatement("symbolic_exec()"); }') idc.add_idc_hotkey("F3", "key_F3") print("=" * 50) |