diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-10-12 08:15:18 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-10-12 08:15:18 +0200 |
| commit | 80744d14e4711383b0d9c9b90a6e68971abef411 (patch) | |
| tree | 67323ea07800ff88469e58ec033dd2766b38c13a /example/jitter | |
| parent | 3cd3675165cd96c030401fbb1e6392898507a71b (diff) | |
| download | miasm-80744d14e4711383b0d9c9b90a6e68971abef411.tar.gz miasm-80744d14e4711383b0d9c9b90a6e68971abef411.zip | |
Sandbox: change use_seh
Option name change: use-windows-structs instead of use-seh.
Diffstat (limited to '')
| -rw-r--r-- | example/jitter/test_x86_32_seh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/test_x86_32_seh.py b/example/jitter/test_x86_32_seh.py index 5277807d..e7f8cff4 100644 --- a/example/jitter/test_x86_32_seh.py +++ b/example/jitter/test_x86_32_seh.py @@ -36,7 +36,7 @@ parser = Sandbox_Win_x86_32.parser(description="PE sandboxer") parser.add_argument("filename", help="PE Filename") options = parser.parse_args() options.usesegm = True -options.use_seh = True +options.use_windows_structs = True # Create sandbox sb = Sandbox_Win_x86_32(options.filename, options, globals()) |