mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-22 23:44:38 +00:00
184 lines
5.9 KiB
C++
184 lines
5.9 KiB
C++
/**
|
|
* @file exception.cpp
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief !exception command
|
|
* @details
|
|
* @version 0.1
|
|
* @date 2020-06-03
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "pch.h"
|
|
|
|
/**
|
|
* @brief help of the !exception command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandExceptionHelp()
|
|
{
|
|
ShowMessages("!exception : monitors the first 32 entry of IDT (starting from "
|
|
"zero).\n\n");
|
|
|
|
ShowMessages(
|
|
"syntax : \t!exception [IdtIndex (hex)] [pid ProcessId (hex)] "
|
|
"[core CoreId (hex)] [imm IsImmediate (yesno)] [sc EnableShortCircuiting (onoff)] "
|
|
"[stage CallingStage (prepostall)] [buffer PreAllocatedBuffer (hex)] [script { Script (string) }] "
|
|
"[asm condition { Condition (assembly/hex) }] [asm code { Code (assembly/hex) }] [output {OutputName (string)}]\n");
|
|
|
|
ShowMessages("\nnote: monitoring page-faults (entry 0xe) is implemented differently (for more information, check the documentation).\n");
|
|
|
|
ShowMessages("\n");
|
|
ShowMessages("\t\te.g : !exception\n");
|
|
ShowMessages("\t\te.g : !exception 0xe\n");
|
|
ShowMessages("\t\te.g : !exception pid 400\n");
|
|
ShowMessages("\t\te.g : !exception core 2 pid 400\n");
|
|
ShowMessages("\t\te.g : !exception 0xe stage post script { printf(\"page-fault occurred at: %%llx\\n\", @cr2); }\n");
|
|
ShowMessages("\t\te.g : !exception asm code { nop; nop; nop }\n");
|
|
}
|
|
|
|
/**
|
|
* @brief !exception command handler
|
|
*
|
|
* @param CommandTokens
|
|
* @param Command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandException(vector<CommandToken> CommandTokens, string Command)
|
|
{
|
|
PDEBUGGER_GENERAL_EVENT_DETAIL Event = NULL;
|
|
PDEBUGGER_GENERAL_ACTION ActionBreakToDebugger = NULL;
|
|
PDEBUGGER_GENERAL_ACTION ActionCustomCode = NULL;
|
|
PDEBUGGER_GENERAL_ACTION ActionScript = NULL;
|
|
UINT32 EventLength;
|
|
UINT32 ActionBreakToDebuggerLength = 0;
|
|
UINT32 ActionCustomCodeLength = 0;
|
|
UINT32 ActionScriptLength = 0;
|
|
UINT64 SpecialTarget = DEBUGGER_EVENT_EXCEPTIONS_ALL_FIRST_32_ENTRIES;
|
|
BOOLEAN GetEntry = FALSE;
|
|
DEBUGGER_EVENT_PARSING_ERROR_CAUSE EventParsingErrorCause;
|
|
|
|
//
|
|
// Interpret and fill the general event and action fields
|
|
//
|
|
//
|
|
if (!InterpretGeneralEventAndActionsFields(
|
|
&CommandTokens,
|
|
EXCEPTION_OCCURRED,
|
|
&Event,
|
|
&EventLength,
|
|
&ActionBreakToDebugger,
|
|
&ActionBreakToDebuggerLength,
|
|
&ActionCustomCode,
|
|
&ActionCustomCodeLength,
|
|
&ActionScript,
|
|
&ActionScriptLength,
|
|
&EventParsingErrorCause))
|
|
{
|
|
return;
|
|
}
|
|
|
|
//
|
|
// Interpret command specific details (if any)
|
|
//
|
|
for (auto Section : CommandTokens)
|
|
{
|
|
if (CompareLowerCaseStrings(Section, "!exception"))
|
|
{
|
|
continue;
|
|
}
|
|
else if (!GetEntry)
|
|
{
|
|
//
|
|
// It's probably an index
|
|
//
|
|
if (!ConvertTokenToUInt64(Section, &SpecialTarget))
|
|
{
|
|
//
|
|
// Unknown parameter
|
|
//
|
|
ShowMessages("unknown parameter '%s'\n\n",
|
|
GetCaseSensitiveStringFromCommandToken(Section).c_str());
|
|
CommandExceptionHelp();
|
|
|
|
FreeEventsAndActionsMemory(Event, ActionBreakToDebugger, ActionCustomCode, ActionScript);
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
//
|
|
// Check if entry is valid or not (start from zero)
|
|
//
|
|
if (SpecialTarget >= 31)
|
|
{
|
|
//
|
|
// Entry is invalid (this command is designed for just first 32
|
|
// entries)
|
|
//
|
|
ShowMessages("the entry should be between 0x0 to 0x1f or first 32 "
|
|
"entries'\n\n");
|
|
CommandExceptionHelp();
|
|
|
|
FreeEventsAndActionsMemory(Event, ActionBreakToDebugger, ActionCustomCode, ActionScript);
|
|
return;
|
|
}
|
|
GetEntry = TRUE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//
|
|
// Unknown parameter
|
|
//
|
|
ShowMessages("unknown parameter '%s'\n\n",
|
|
GetCaseSensitiveStringFromCommandToken(Section).c_str());
|
|
CommandExceptionHelp();
|
|
|
|
FreeEventsAndActionsMemory(Event, ActionBreakToDebugger, ActionCustomCode, ActionScript);
|
|
return;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Set the target exception (if not specific then it means all exceptions)
|
|
//
|
|
Event->Options.OptionalParam1 = SpecialTarget;
|
|
|
|
//
|
|
// Send the ioctl to the kernel for event registration
|
|
//
|
|
if (!SendEventToKernel(Event, EventLength))
|
|
{
|
|
//
|
|
// There was an error, probably the handle was not initialized
|
|
// we have to free the Action before exit, it is because, we
|
|
// already freed the Event and string buffers
|
|
//
|
|
|
|
FreeEventsAndActionsMemory(Event, ActionBreakToDebugger, ActionCustomCode, ActionScript);
|
|
return;
|
|
}
|
|
|
|
//
|
|
// Add the event to the kernel
|
|
//
|
|
if (!RegisterActionToEvent(Event,
|
|
ActionBreakToDebugger,
|
|
ActionBreakToDebuggerLength,
|
|
ActionCustomCode,
|
|
ActionCustomCodeLength,
|
|
ActionScript,
|
|
ActionScriptLength))
|
|
{
|
|
//
|
|
// There was an error
|
|
//
|
|
|
|
FreeEventsAndActionsMemory(Event, ActionBreakToDebugger, ActionCustomCode, ActionScript);
|
|
return;
|
|
}
|
|
}
|