debugger icon indicating copy to clipboard operation
debugger copied to clipboard

Binary Ninja debugger

Results 267 debugger issues
Sort by recently updated
recently updated
newest added

Right now, when we detach/quit from a kernel debugging session, it always cause the guest system to enter into a paused state. However, if I use WinDbg to connect to...

In Windows kernel debugging, when I run the command `!process 0 0 `, the Binary Ninja UI will appear to hang for ten or more seconds, then all output lines...

The arch + platform is used to create the debugger binary view. Right now, it is either copied from the currently opened view, or is provided by the user. It...

Now that we can already use the debugger without a binary view, we lack the ability to add the breakpoint at the program entry point. This is of course reasonable...

So that the user can launch the target directly from there

Right now, the debug adapter list is empty because there is no way to debug a PE on macOS. However, recently, users mention they wish to debug the PE inside...

On Linux, when gdb is running as non-root, it cannot attach to other processes with a pid. It is related to `/proc/sys/kernel/yama/ptrace_scope` stuff. We need to either use `PTRACE_TRACEME` or...

Effort: Low
Impact: Low
test

![image](https://user-images.githubusercontent.com/94503187/166098370-abdaf38b-6cfc-44b7-ba3f-df0627a2311b.png) We can see the base address of the module is not deducted from the base of module. Thanks @yrp604 for finding this!

bug
good first issue
Effort: Low
Impact: Low
UI

Currently, I am using a uint64_t to represent register values. This do not work for things like xmm0. Its value gets truncated

bug
Effort: Medium
Impact: High
functionality
register

Currently, if we print the various Python debugger objects, many of them do not give us any interesting information. For example, ```Python >>> dbg
 ``` We should give more information...

good first issue
Effort: Low
Impact: Low
python api