diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-11-19 09:02:38 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-12-04 15:10:10 +0100 |
| commit | 6cfdd9b886ee589b0f812b84f81077315cc25b5b (patch) | |
| tree | 1942aa6f0bccf4b8695b3aa451c2832c450b0e04 /example/jitter/unpack_upx.py | |
| parent | 6a1096c544abf2747308f3c4163f2fd3ae1360dc (diff) | |
| download | miasm-6cfdd9b886ee589b0f812b84f81077315cc25b5b.tar.gz miasm-6cfdd9b886ee589b0f812b84f81077315cc25b5b.zip | |
Sandbox: support additional options
Diffstat (limited to 'example/jitter/unpack_upx.py')
| -rw-r--r-- | example/jitter/unpack_upx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/unpack_upx.py b/example/jitter/unpack_upx.py index f1f179b8..c329244e 100644 --- a/example/jitter/unpack_upx.py +++ b/example/jitter/unpack_upx.py @@ -43,7 +43,7 @@ parser.add_argument("--graph", help="Export the CFG graph in graph.dot", action="store_true") options = parser.parse_args() -sb = Sandbox_Win_x86_32(options.filename, options, globals()) +sb = Sandbox_Win_x86_32(options.filename, options, globals(), parse_reloc=False) if options.verbose is True: |