45{
48
49
50
51
52 if (SplitCommand.size() != 2)
53 {
56 return;
57 }
58
59
60
61
63 {
64 ShowMessages(
"please specify a correct hex value for breakpoint id\n\n");
66
67 return;
68 }
69
70
71
72
74 {
75
76
77
79
80
81
82
84
85
86
87
89 }
90 else
91 {
92 ShowMessages(
"err, clearing breakpoints is only valid if you connected to "
93 "a debuggee in debugger-mode\n");
94 }
95}
unsigned __int64 UINT64
Definition BasicTypes.h:21
@ DEBUGGEE_BREAKPOINT_MODIFICATION_REQUEST_CLEAR
Definition RequestStructures.h:1081
VOID CommandBcHelp()
help of the bc command
Definition bc.cpp:25
BOOLEAN g_IsSerialConnectedToRemoteDebuggee
Shows if the debugger was connected to remote debuggee over (A remote guest)
Definition globals.h:231
BOOLEAN ConvertStringToUInt64(string TextToConvert, PUINT64 Result)
check and convert string to a 64 bit unsigned integer and also check for special notations like 0x,...
Definition common.cpp:240
BOOLEAN KdSendListOrModifyPacketToDebuggee(PDEBUGGEE_BP_LIST_OR_MODIFY_PACKET ListOrModifyPacket)
Sends a breakpoint list or modification packet to the debuggee.
Definition kd.cpp:1023
VOID ShowMessages(const char *Fmt,...)
Show messages.
Definition libhyperdbg.cpp:96
The structure of breakpoint modification requests packet in HyperDbg.
Definition RequestStructures.h:1090
UINT64 BreakpointId
Definition RequestStructures.h:1091
DEBUGGEE_BREAKPOINT_MODIFICATION_REQUEST Request
Definition RequestStructures.h:1092