https://github.com/menci/mdb
Menci DeBugger: Simple Linux x86_64 debugger with ptrace(2)
https://github.com/menci/mdb
Last synced: about 1 month ago
JSON representation
Menci DeBugger: Simple Linux x86_64 debugger with ptrace(2)
- Host: GitHub
- URL: https://github.com/menci/mdb
- Owner: Menci
- License: unlicense
- Created: 2021-06-05T16:53:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-05T17:12:17.000Z (about 5 years ago)
- Last Synced: 2026-01-14T00:39:52.614Z (6 months ago)
- Language: C++
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Menci DeBugger
Simple Linux x86_64 debugger with ptrace(2).
Only works with single-threaded static-linked programs.
# Dependencies
* Linux
* C++ compiler with C++ 17 support
* CMake (>= 3.0)
* GNU Readline
* GNU Source-highlight
* GNU Binutils
* Zydis
# Build
```bash
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make -j
```
# Usage
```bash
# In build/ directory
bin/mdb ~/a.out # The being-debugged file
```
Enter `h` for help.