diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-07-16 13:14:52 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-07-16 13:14:52 +0200 |
| commit | 8bab069ce741d5f227279a3a00f8d7ab0ed1554a (patch) | |
| tree | eb6508c8e973adb147e588294e7bf89a0e81a94b /example/jitter/unpack_upx.py | |
| parent | c03edceec59d28244efe88d0db2cf369f5c37953 (diff) | |
| download | miasm-8bab069ce741d5f227279a3a00f8d7ab0ed1554a.tar.gz miasm-8bab069ce741d5f227279a3a00f8d7ab0ed1554a.zip | |
Jitter: fix example api
Diffstat (limited to 'example/jitter/unpack_upx.py')
| -rw-r--r-- | example/jitter/unpack_upx.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/jitter/unpack_upx.py b/example/jitter/unpack_upx.py index fa1eb4ae..08b733a4 100644 --- a/example/jitter/unpack_upx.py +++ b/example/jitter/unpack_upx.py @@ -44,7 +44,7 @@ else: logging.basicConfig(level=logging.WARNING) if options.verbose is True: - sb.jitter.vm.dump_memory_page_pool() + print sb.jitter.vm ep = sb.entry_point @@ -71,7 +71,7 @@ if options.graph is True: if options.verbose is True: - sb.jitter.vm.dump_memory_page_pool() + print sb.jitter.vm def update_binary(jitter): |