pwntools cannot handle SIGSEGV in my Archlinux #2340
-
Hi I don't know why pwntools( |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I assume your exploit terminates and takes the debugger with it. Try adding |
Beta Was this translation helpful? Give feedback.
-
Consider about ipython. Ipython wouldn't kill the process when exploit terminates. And sometimes I want to check the remaining output of By the way, I'm also a Arch Linux user, and tmux is great when you want to debug. It may be an alternative that open tmux in vscode so pwntools treat shell as tmux. |
Beta Was this translation helpful? Give feedback.
I assume your exploit terminates and takes the debugger with it. Try adding
conn.interactive()
at the end, to keep the python process around.