diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-16 16:53:11 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-16 16:53:11 +0200 |
| commit | 13b47e5d7a7d69de8450c87376f7684f7035540a (patch) | |
| tree | 988f386a235baa20518d7fa771d27144586a619b /miasm2/analysis/sandbox.py | |
| parent | f94c32b24795318b8c6fc17478ec88f72afa8f5d (diff) | |
| download | miasm-13b47e5d7a7d69de8450c87376f7684f7035540a.tar.gz miasm-13b47e5d7a7d69de8450c87376f7684f7035540a.zip | |
sandbox: missing import (tx to N.Pourcelot)
Diffstat (limited to 'miasm2/analysis/sandbox.py')
| -rw-r--r-- | miasm2/analysis/sandbox.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index c622612f..9c7bd8e3 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -5,6 +5,7 @@ from miasm2.jitter.jitload import vm_load_pe, preload_pe, libimp from miasm2.jitter.jitload import vm_load_elf, libimp, preload_elf from miasm2.os_dep import win_api_x86_32, win_api_x86_32_seh from miasm2.jitter.csts import PAGE_READ, PAGE_WRITE +from miasm2.analysis import debugging class Sandbox(object): """ |