diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-02-13 11:18:23 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-02-13 13:33:12 +0100 |
| commit | c6e218705278303ec06d418ed9e0548077c4517d (patch) | |
| tree | ef8a49c376601aa232b1a227816cd2f745cf5051 | |
| parent | 1032224157dcdf5f0e5dc02441cd287ae004e41e (diff) | |
| download | miasm-c6e218705278303ec06d418ed9e0548077c4517d.tar.gz miasm-c6e218705278303ec06d418ed9e0548077c4517d.zip | |
Sandbox: add x86_64 bit example
| -rw-r--r-- | example/jitter/sandbox_pe_x86_64.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/example/jitter/sandbox_pe_x86_64.py b/example/jitter/sandbox_pe_x86_64.py new file mode 100644 index 00000000..8d9db88e --- /dev/null +++ b/example/jitter/sandbox_pe_x86_64.py @@ -0,0 +1,23 @@ +import os +from pdb import pm +from miasm2.analysis.sandbox import Sandbox_Win_x86_64 + +# Python auto completion +filename = os.environ.get('PYTHONSTARTUP') +if filename and os.path.isfile(filename): + execfile(filename) + +# Insert here user defined methods + +# Parse arguments +parser = Sandbox_Win_x86_64.parser(description="PE sandboxer") +parser.add_argument("filename", help="PE Filename") +options = parser.parse_args() + +# Create sandbox +sb = Sandbox_Win_x86_64(options.filename, options, globals()) + +# Run +sb.run() + +assert(sb.jitter.run is False) |