52{
53 if (CommandTokens.size() != 1)
54 {
55 ShowMessages("incorrect use of the '%s'\n\n",
58 }
59
61 {
62
63
64
65 ShowMessages("remote debugging - debugger ('debugger mode')\n");
66 }
68 {
69
70
71
72 ShowMessages("remote debugging - debuggee ('debugger mode')\n");
73 }
75 {
76
77
78
79 ShowMessages("remote debugging ('vmi mode'), ip : %s:%s \n",
82 }
84 {
85
86
87
88 ShowMessages("local debugging ('vmi mode')\n");
89 }
91 {
92
93
94
95
96 ShowMessages("a remote debugger connected to this system in ('vmi "
97 "mode'), ip : %s:%s \n",
100 }
101 else
102 {
103
104
105
106 ShowMessages("err, you're not connected to any instance of HyperDbg\n");
107 }
108}
BOOLEAN g_IsSerialConnectedToRemoteDebuggee
Shows if the debugger was connected to remote debuggee over (A remote guest).
Definition globals.h:253
std::string GetCaseSensitiveStringFromCommandToken(CommandToken TargetToken)
Get case sensitive string from command token.
Definition common.cpp:467
string g_ServerPort
In debugger (not debuggee), we save the port of server debuggee in this variable to use it later e....
Definition globals.h:132
string g_ServerIp
In debugger (not debuggee), we save the port of server debuggee in this variable to use it later e....
Definition globals.h:139
BOOLEAN g_IsConnectedToRemoteDebuggee
Shows whether the current debugger is the host and connected to a remote debuggee (guest).
Definition globals.h:96
BOOLEAN g_IsConnectedToHyperDbgLocally
Shows whether the user is allowed to use 'load' command to load modules locally in VMI (virtual machi...
Definition globals.h:89
BOOLEAN g_IsSerialConnectedToRemoteDebugger
Shows if the debugger was connected to remote debugger (A remote host).
Definition rev.cpp:18
BOOLEAN g_IsConnectedToRemoteDebugger
Shows whether the current system is a guest (debuggee) and a remote debugger is connected to this sys...
Definition globals.h:103
VOID CommandStatusHelp()
help of the .status command
Definition status.cpp:31