diff options
| -rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md index 7c8dcdac..0eb43c62 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Reverse engineering framework in Python - [Obtaining Miasm](#user-content-obtaining-miasm) - [Software requirements](#user-content-software-requirements) - [Configuration](#user-content-configuration) + - [Windows & IDA](#user-content-windows--ida) - [Testing](#user-content-testing) - [They already use Miasm](#user-content-they-already-use-miasm) - [Misc](#user-content-misc) @@ -475,6 +476,16 @@ If something goes wrong during one of the jitter modules compilation, Miasm will skip the error and disable the corresponding module (see the compilation output). +Windows & IDA +------------- + +Most of Miasm's IDA plugins use a subset of Miasm functionnality. +A quick way to have them working is to add: +* `elfesteem` directory and `pyparsing.py` to `C:\...\IDA\python\` or `pip install pyparsing elfesteem` +* `miasm2/miasm2` directory to `C:\...\IDA\python\` + +All features excepting JITter related ones will be available. For a more complete installation, please refer to above paragraphs. + Testing ======= |