diff options
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))) |