diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-19 10:46:20 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-23 10:07:05 +0200 |
| commit | 5ab605465abab7e7cdef5ae06cb5c7e6f9046db3 (patch) | |
| tree | 33de038efabbf63e271c15cb687dc49d886e7b0f | |
| parent | dd9ba8d729398b4da9cfa5169b6bd85a2c708d9d (diff) | |
| download | miasm-5ab605465abab7e7cdef5ae06cb5c7e6f9046db3.tar.gz miasm-5ab605465abab7e7cdef5ae06cb5c7e6f9046db3.zip | |
Sanbox/x86: fix default stack
| -rw-r--r-- | miasm2/analysis/sandbox.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index 688c7592..9dc800fc 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -265,8 +265,8 @@ class OS_Linux_str(OS): class Arch_x86(Arch): _ARCH_ = None # Arch name - STACK_SIZE = 0x100000 - STACK_BASE = 0x123000 + STACK_SIZE = 0x10000 + STACK_BASE = 0x130000 def __init__(self): super(Arch_x86, self).__init__() |