diff options
| author | Camille Mougey <commial@gmail.com> | 2015-10-23 11:07:01 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-10-23 11:07:01 +0200 |
| commit | 7bac485ac9efffb4ab07e5b0e337972eef963f80 (patch) | |
| tree | 6713eb196e06fca875d0232962e2cc75643d4dc7 /miasm2/analysis/sandbox.py | |
| parent | 97bcdc61e586fccf89e1bd4699c8f4f5314d6dd1 (diff) | |
| parent | c066e5beac4f23727be08d6334ef9a577d22a45e (diff) | |
| download | miasm-7bac485ac9efffb4ab07e5b0e337972eef963f80.tar.gz miasm-7bac485ac9efffb4ab07e5b0e337972eef963f80.zip | |
Merge pull request #237 from serpilliere/win_seh_alloc_min
Win seh alloc min
Diffstat (limited to '')
| -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__() |