aboutsummaryrefslogtreecommitdiff
path: root/exploit.py
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-04-05 14:22:49 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-04-05 14:22:49 +0200
commit04176b2c5e8fbc8279c90e4e84cc6d83c7c17b19 (patch)
tree1398220de5e4482a0c6ad907c0dd9655c904eda0 /exploit.py
parent66d1d63f6155b6a2037e1792fd6eda2f17e4be7e (diff)
Some quality-of-life improvments.HEADmaster
* replaced entropy calculation with a !broken one * README update Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'exploit.py')
-rwxr-xr-xexploit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exploit.py b/exploit.py
index 7b285bd..09f590d 100755
--- a/exploit.py
+++ b/exploit.py
@@ -80,4 +80,4 @@ if __name__ == '__main__':
print('Return Address: {}'.format(hex(new_return_addr_tuple[1])))
ret = run_exploit(new_return_addr_tuple[1], exploit_buffer, optional_destination_offset)
- print('Exit Code: {}'.format(ret))
+ print('Exit Code: {}'.format("SIGSEGV (-11)" if ret == -11 else str(ret)))