Skip to content

This is a small simple debugger written using PTRACE for Linux

Notifications You must be signed in to change notification settings

SourceCodeDeleted/PTRACE-Debugger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PTRACE-Debugger

Linux only debugger using PTRACE

This is a small work to make a custom debugger in linux. I saw some resources for this , but nothing completed or in easily working conditions.

Run the debugger like ./debugger when prompted for executable please provide full path.

To Compile

g++ -m32 debugger.cpp -o debugger
To Run
./ debugger <FULL PATH TO BINARY> 

Commands Available
######### Commands ##############
next              : To step 
break 0x12345678  : To set break point at 0x12345678
continue          : Continue or c may be used
exit              : Exit the program
infobreak         : List break points
examined          : view memory size DWORD at location 



########################################

About

This is a small simple debugger written using PTRACE for Linux

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages