diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-04-05 14:22:49 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-04-05 14:22:49 +0200 |
commit | 04176b2c5e8fbc8279c90e4e84cc6d83c7c17b19 (patch) | |
tree | 1398220de5e4482a0c6ad907c0dd9655c904eda0 /exploit.py | |
parent | 66d1d63f6155b6a2037e1792fd6eda2f17e4be7e (diff) |
* replaced entropy calculation with a !broken one
* README update
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'exploit.py')
-rwxr-xr-x | exploit.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))) |