debugger
debugger copied to clipboard
Binary Ninja debugger
I chatted with a WinDbg dev and was told that IDebugControl::Execute only returns when the full response text is emitted via the callback. This means I can write some code...
It would be nice to have the ability to create breakpoints based on thread events like creation, start, exit.
Pretty much the same reason to https://github.com/Vector35/debugger/issues/346. We have only one segment that ranges from 0x0 to 0xffffffffffffffff, which the searching thread will try to scan for. This will take...
Its difficult to debug applications that have a lot of signals as it causes the debugger to pause very often. It would be nice to be able to control how...
Right now, LLDB by default turns off ASLR, which could be an unwanted behavior in certain cases. We can have it turned off by adding " --disable-aslr false" to the...
Right now we have the "debugger.x64dbgEngPath" setting that allows the user to type in an alternative path for the x64 dbgeng path. It works like this, if this path is...
Previously, the launch process is synchronous, which is problematic, since if the operation breaks, it hangs the debugger. I have recently changed it to async (in various commits, e.g., d972a36748861e4c9c6f24d686e2895f3ebe61a5)....
add a warning about the LLDB bug until it's resolved upstream