ajout de console de debogage

This commit is contained in:
YANNIS
2025-05-27 16:13:41 +02:00
parent e97e1cbaf5
commit 359f3a9b3a
5 changed files with 89 additions and 9 deletions
+54 -1
View File
@@ -6,7 +6,9 @@
#include <unistd.h>
#include <signal.h>
Debugger::Debugger(const std::string& prog_name) : program_name(prog_name) {}
Debugger::Debugger(const std::string& prog_name) : program_name(prog_name) {
std::cout << "[+] Debugger initialized for program: " << program_name << "\n";
}
void Debugger::run() {
child_pid = fork();
@@ -30,9 +32,60 @@ void Debugger::run_debugger() {
waitpid(child_pid, &status, 0);
std::cout << "[+] Debugger attached to PID: " << child_pid << "\n";
DEBUGING();
ptrace(PTRACE_CONT, child_pid, nullptr, nullptr);
waitpid(child_pid, &status, 0);
std::cout << "[+] Child process exited.\n";
}
void Debugger::breakpoint_list() {
std::cout << "Breakpoints:\n";
for (const auto& bp : breakpoints) {
std::cout << bp << std::endl;
}
}
void Debugger::set_breakpoint(pid_t pid, std::intptr_t addr) {
Breakpoint bp(pid, addr);
bp.enable();
breakpoints.push_back(bp);
std::cout << "[+] Breakpoint set at address: " << std::hex << addr << std::dec << "\n";
}
void Debugger::remove_breakpoint(pid_t pid, std::intptr_t addr) {
auto it = std::remove_if(breakpoints.begin(), breakpoints.end(),
[pid, addr](const Breakpoint& bp) {
return bp.get_address() == addr && bp.is_enabled();
});
if (it != breakpoints.end()) {
it->disable();
breakpoints.erase(it, breakpoints.end());
std::cout << "[+] Breakpoint removed at address: " << std::hex << addr << std::dec << "\n";
} else {
std::cout << "[-] No breakpoint found at address: " << std::hex << addr << std::dec << "\n";
}
}
void Debugger::DEBUGING() {
std::cout << "[+] Entering debugging loop. Type 'exit' to quit.\n";
std::string command;
while (true) {
std::cout << "debugger> ";
std::getline(std::cin, command);
if (command == "exit") {
break;
} else if (command == "list") {
breakpoint_list();
} else if (command.substr(0, 3) == "set") {
std::intptr_t addr = std::stol(command.substr(4), nullptr, 16);
set_breakpoint(child_pid, addr);
} else if (command.substr(0, 6) == "remove") {
std::intptr_t addr = std::stol(command.substr(7), nullptr, 16);
remove_breakpoint(child_pid, addr);
} else {
std::cout << "Unknown command: " << command << "\n";
}
}
}