summaryrefslogtreecommitdiff
path: root/pwnlib/elf/corefile.py
diff options
context:
space:
mode:
Diffstat (limited to 'pwnlib/elf/corefile.py')
-rw-r--r--pwnlib/elf/corefile.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pwnlib/elf/corefile.py b/pwnlib/elf/corefile.py
index b5a248a..b4d0e9d 100644
--- a/pwnlib/elf/corefile.py
+++ b/pwnlib/elf/corefile.py
@@ -531,7 +531,6 @@ class Corefile(ELF):
>>> io = elf.process()
>>> io.wait(2)
>>> core = io.corefile
- [!] End of the stack is corrupted, skipping stack parsing (got: 41414141)
>>> core.argc, core.argv, core.env
(0, [], {})
>>> core.stack.data.endswith(b'AAAA')
@@ -667,7 +666,7 @@ class Corefile(ELF):
log.warn('Could not find the stack!')
self.stack = None
- with context.local(bytes=self.bytes, log_level='warn'):
+ with context.local(bytes=self.bytes):
try:
self._parse_stack()
except ValueError: