diff options
| author | serpilliere <devnull@localhost> | 2011-11-18 08:52:02 +0100 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2011-11-18 08:52:02 +0100 |
| commit | e132bbf21e815aaf3c5b85cd4446a430cc72aeea (patch) | |
| tree | c5bf2ce62794d1e533043f437b3518345d2c22fb /example/sandbox_pe.py | |
| parent | 0ac5622550d2f335a1aa0f961b729efc3ceb3414 (diff) | |
| parent | 10149e4e7ebff93b4cef05700a7db9ef95df1167 (diff) | |
| download | miasm-e132bbf21e815aaf3c5b85cd4446a430cc72aeea.tar.gz miasm-e132bbf21e815aaf3c5b85cd4446a430cc72aeea.zip | |
merge with graph update
Diffstat (limited to '')
| -rw-r--r-- | example/sandbox_pe.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/example/sandbox_pe.py b/example/sandbox_pe.py index 75e9b306..fe3aa390 100644 --- a/example/sandbox_pe.py +++ b/example/sandbox_pe.py @@ -90,7 +90,7 @@ log_regs = True log_mn = log_regs def run_bin(my_eip, known_blocs, code_blocs_mem_range): global log_regs, log_mn - while my_eip != 0x1337beef: + while my_eip != 0x1337beef: #dyn dll funcs if my_eip in runtime_dll.fad2cname: @@ -120,9 +120,7 @@ def run_bin(my_eip, known_blocs, code_blocs_mem_range): known_blocs, code_blocs_mem_range = updt_automod_code(known_blocs) else: raise ValueError("except at", hex(my_eip)) - - print "start emulation" run_bin(ep, known_blocs, code_blocs_mem_range) dump_raw_e(e) |