Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ test/__pycache__
/test/Pipfile

.DS_Store
*.pyc
__pycache__/
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

This is the repository for Binary Ninja Debugger. The debugger is written in C++ and is shipped with BN as a plugin.

## Features

- Multi-platform debugging support (Windows, Linux, macOS)
- Multiple debug adapters (LLDB, GDB, WinDbg, etc.)
- Remote debugging capabilities
- **Custom Debug Adapter API** - Create your own debug adapters in C++ or Python
- Time Travel Debugging (TTD) support
- Kernel debugging on Windows

## Custom Debug Adapters

The debugger now supports custom debug adapters that can be implemented in both C++ and Python. This allows extending the debugger with support for new protocols, targets, or specialized debugging scenarios.

See [docs/custom_debug_adapters.md](docs/custom_debug_adapters.md) for detailed documentation and examples.

## Platform and Target Support

This is the current comparability matrix of the debugger. The columns stand for where we run BN and the rows stand for the targets.
Expand Down
Loading