diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-08-24 22:26:16 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-08-24 22:26:16 -0400 |
| commit | 71a1a997e9be461a841a0f801bd19a23ad62f106 (patch) | |
| tree | 7993d184758c1fde733be3f4193c906e50410ce9 /python/mediumlevelil.py | |
| parent | 0d88336e22cf85a917729fe0f814c1e63736fca0 (diff) | |
Add MLIL instruction for dealing with direct access to GOT/IAT entries
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 3e7a6997..07759a47 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -89,6 +89,7 @@ class MediumLevelILInstruction(object): MediumLevelILOperation.MLIL_ADDRESS_OF_FIELD: [("src", "var"), ("offset", "int")], MediumLevelILOperation.MLIL_CONST: [("constant", "int")], MediumLevelILOperation.MLIL_CONST_PTR: [("constant", "int")], + MediumLevelILOperation.MLIL_IMPORT: [("constant", "int")], MediumLevelILOperation.MLIL_ADD: [("left", "expr"), ("right", "expr")], MediumLevelILOperation.MLIL_ADC: [("left", "expr"), ("right", "expr"), ("carry", "expr")], MediumLevelILOperation.MLIL_SUB: [("left", "expr"), ("right", "expr")], |
