diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-07-27 11:00:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-27 11:00:51 +0200 |
| commit | bed57aef4c0c738061e4f05ad6fa0061d1db08e4 (patch) | |
| tree | 57bf7a79f50f132d7d668ca59a95e1a51e7763d5 | |
| parent | 812e094b866b06c74ab4383018f672735b1e3450 (diff) | |
| parent | 18b4310dc7582ae611cec66738d5ae286241af86 (diff) | |
| download | miasm-bed57aef4c0c738061e4f05ad6fa0061d1db08e4.tar.gz miasm-bed57aef4c0c738061e4f05ad6fa0061d1db08e4.zip | |
Merge pull request #1055 from WilliamBruneau/fix_ida_menu
Fix example/ida/menu.py for IDA >= 7.1
| -rw-r--r-- | example/ida/menu.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/ida/menu.py b/example/ida/menu.py index f98bd75e..67203d52 100644 --- a/example/ida/menu.py +++ b/example/ida/menu.py @@ -7,6 +7,8 @@ - Miasm > Type propagation (icon 38, F11) """ +import idaapi as idaapi + from symbol_exec import symbolic_exec from graph_ir import function_graph_ir try: |