We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Binary Ninja Ultimate 4.3.6564-dev
4.3.6564-dev
from binaryninja import load from binaryninja.debugger import DebuggerController with load("/usr/bin/ls") as bv: dc = DebuggerController(bv) if dc.launch(): stop_reason = dc.go_and_wait() print(f"Stop Reason: {dc.stop_reason_str}") else: print("Failed to launch the target.")
The text was updated successfully, but these errors were encountered:
You should use launch_and_wait() to launch the target. launch only requests the operation and does not actually perform it
launch_and_wait()
launch
Sorry, something went wrong.
It sounds like there are two bugs:
Re-opening this -- as mentioned above, even if the user is using the API in a wrong way, we should not crash
This is a UAF on the debugger controller and the objects owned by it. I am not sure there is actually a way to fix it.
Hopefully #676 and #675 will make this less likely to happen
No branches or pull requests
Binary Ninja Ultimate
4.3.6564-dev
The text was updated successfully, but these errors were encountered: