mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-15 12:09:34 +00:00
97 lines
2 KiB
C++
97 lines
2 KiB
C++
/**
|
|
* @file bd.cpp
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief bd command
|
|
* @details
|
|
* @version 0.1
|
|
* @date 2021-03-10
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "pch.h"
|
|
|
|
//
|
|
// Global Variables
|
|
//
|
|
extern BOOLEAN g_IsSerialConnectedToRemoteDebuggee;
|
|
|
|
/**
|
|
* @brief help of the bd command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandBdHelp()
|
|
{
|
|
ShowMessages("bd : disables a breakpoint using breakpoint id.\n\n");
|
|
|
|
ShowMessages("syntax : \tbd [BreakpointId (hex)]\n");
|
|
|
|
ShowMessages("\n");
|
|
ShowMessages("\t\te.g : bd 0\n");
|
|
ShowMessages("\t\te.g : bd 2\n");
|
|
}
|
|
|
|
/**
|
|
* @brief handler of bd command
|
|
*
|
|
* @param CommandTokens
|
|
* @param Command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandBd(vector<CommandToken> CommandTokens, string Command)
|
|
{
|
|
UINT64 BreakpointId;
|
|
DEBUGGEE_BP_LIST_OR_MODIFY_PACKET Request = {0};
|
|
|
|
//
|
|
// Validate the commands
|
|
//
|
|
if (CommandTokens.size() != 2)
|
|
{
|
|
ShowMessages("incorrect use of the '%s'\n\n",
|
|
GetCaseSensitiveStringFromCommandToken(CommandTokens.at(0)).c_str());
|
|
CommandBdHelp();
|
|
return;
|
|
}
|
|
|
|
//
|
|
// Get the breakpoint id
|
|
//
|
|
if (!ConvertTokenToUInt64(CommandTokens.at(1), &BreakpointId))
|
|
{
|
|
ShowMessages("please specify a correct hex value for breakpoint id\n\n");
|
|
CommandBdHelp();
|
|
|
|
return;
|
|
}
|
|
|
|
//
|
|
// Check if the remote serial debuggee is paused or not (connected or not)
|
|
//
|
|
if (g_IsSerialConnectedToRemoteDebuggee)
|
|
{
|
|
//
|
|
// Perform disabling breakpoint
|
|
//
|
|
Request.Request = DEBUGGEE_BREAKPOINT_MODIFICATION_REQUEST_DISABLE;
|
|
|
|
//
|
|
// Set breakpoint id
|
|
//
|
|
Request.BreakpointId = BreakpointId;
|
|
|
|
//
|
|
// Send the request
|
|
//
|
|
KdSendListOrModifyPacketToDebuggee(&Request);
|
|
}
|
|
else
|
|
{
|
|
ShowMessages("err, disabling breakpoints is only valid if you connected to "
|
|
"a debuggee in debugger-mode\n");
|
|
}
|
|
}
|