You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever I use pwntools to gain a shell, and call interactive() it can be frustrating to deal with not being able to use Ctrl-C, Ctrl-Z etc. I believe it would be useful to add a tty flag to interactive() so it handles keyboard events such as these without exiting.
The text was updated successfully, but these errors were encountered:
This could possibly be solved if the remote end was shell, we could spawn a pty on remote end and route keystrokes through it... but it is way harder than just installing a signal handler on local side / manipulating termios stuff.
Whenever I use pwntools to gain a shell, and call
interactive()
it can be frustrating to deal with not being able to use Ctrl-C, Ctrl-Z etc. I believe it would be useful to add atty
flag tointeractive()
so it handles keyboard events such as these without exiting.The text was updated successfully, but these errors were encountered: