1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-03-30 22:19:17 +02:00

Add debug statements, and fix one that was causing crashes

This commit is contained in:
OJ 2017-08-09 13:03:12 +10:00
parent 005ba6a8c0
commit bc6c2039fb
No known key found for this signature in database
GPG Key ID: D5DC61FB93260597
2 changed files with 6 additions and 2 deletions
c/meterpreter/source

@ -350,7 +350,7 @@ BOOL command_process_inline(Command *baseCommand, Command *extensionCommand, Rem
packet_call_completion_handlers(remote, packet, requestId);
}
dprintf("[COMMAND] Completion handlers finished for %s. Returning: %s", lpMethod, (serverContinue ? "TRUE" : "FALSE"));
dprintf("[COMMAND] Completion handlers finished for %s.", lpMethod);
} while (0);
}
__except (EXCEPTION_EXECUTE_HANDLER)
@ -360,9 +360,12 @@ BOOL command_process_inline(Command *baseCommand, Command *extensionCommand, Rem
if (!packet->local)
{
dprintf("[COMMAND] Packet is not local, destroying");
packet_destroy(packet);
dprintf("[COMMAND] Packet destroyed");
}
dprintf("[COMMAND] Command processing finishing. Returning: %s", (serverContinue ? "TRUE" : "FALSE"));
return serverContinue;
}
@ -479,7 +482,7 @@ BOOL command_handle(Remote *remote, Packet *packet)
{
dprintf("[DISPATCH] Executing inline: %s", lpMethod);
result = command_process_inline(baseCommand, extensionCommand, remote, packet);
dprintf("[DISPATCH] Executed inline: %s, result %u (%x)", lpMethod, result, result);
dprintf("[DISPATCH] Executed inline: result %u (%x)", result, result);
}
else
{

@ -266,6 +266,7 @@ static void config_create(Remote* remote, LPBYTE uuid, MetsrvConfig** config, LP
if (t == current && t->get_handle != NULL)
{
sess->comms_handle.handle = t->get_handle(t);
dprintf("[CONFIG] Comms handle set to %p", (UINT_PTR)sess->comms_handle.handle);
}
switch (t->type)