-
-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
radare grabs CTRL-C while loading binary and dont return it #48
Comments
it’s all python’s fault :P can you trace RCons.break and RCons.break_end calls with ltrace/gdb/r2 tracepoints?
|
@pwntester Are there any updates on this? |
Im designing some controlc changes with skuater to make it work better in the debugger. Needed for windows, windbg and gdb backends for example. There are some issues with the ^z handling too in ubuntutouch and im thinking in a way to fix this but i still have to think more on this. About the loading times in rbin, this will be greatly enhaced when moving to sdb. And with those ^c changes this can be solved more elegantly. But lets keep this for 1.0.
|
ping |
@radare wasn't it fixed already? |
A simple script like the one below will grab CTRL-C in the bin_load() call so that script dont get the interrupt.
from r2 import r_core
rc = r_core.RCore()
rc.file_open("/bin/ls", 0, 0)
rc.bin_load("/bin/ls", 0)
raw_input()
Try control-c when waiting for user input to verify
The text was updated successfully, but these errors were encountered: