diff options
| author | Tim Blazytko <tim.blazytko@rub.de> | 2015-07-06 16:14:45 +0200 |
|---|---|---|
| committer | Tim Blazytko <tim.blazytko@rub.de> | 2015-07-06 16:19:44 +0200 |
| commit | d519844fdaaec26b79713ed9ce9f92d6ba4d915b (patch) | |
| tree | 94e4ffaf8cbbb7ac497c1c5af5dbb76133df5959 /miasm2/analysis/sandbox.py | |
| parent | 0ca69488498779b47390348ce2cdd0b810e76ccc (diff) | |
| download | miasm-d519844fdaaec26b79713ed9ce9f92d6ba4d915b.tar.gz miasm-d519844fdaaec26b79713ed9ce9f92d6ba4d915b.zip | |
sandbox: refactored comments; creds to serpilliere
Diffstat (limited to 'miasm2/analysis/sandbox.py')
| -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 26212e25..3bacda5e 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -352,7 +352,7 @@ class Sandbox_Win_x86_64(Sandbox, Arch_x86_64, OS_Win): for i in xrange(0x4): self.jitter.push_uint64_t(0) - # Pre-stack some arguments + # Pre-stack return address self.jitter.push_uint64_t(0x1337beef) # Set the runtime guard @@ -401,7 +401,7 @@ class Sandbox_Linux_x86_64(Sandbox, Arch_x86_64, OS_Linux): for i in xrange(0x4): self.jitter.push_uint64_t(0) - # Pre-stack some arguments + # Pre-stack return address self.jitter.push_uint64_t(0x1337beef) # Set the runtime guard |