!unhide (disable transparent-mode)
Description of the '!unhide' command in HyperDbg.
Command
!unhide
Syntax
!unhide
Description
Disables the transparent-mode of HyperDbg.
Parameters
None
Examples
IOCTL
You should send the IOCTL_DEBUGGER_HIDE_AND_UNHIDE_TO_TRANSPARENT_THE_DEBUGGER
IOCTL to enable or disable transparent-mode.
The following structure shows whether enable or disable it.
IsHide = TRUE
: Enable transparent-mode.
IsHide = FALSE
: Disable transparent-mode.
You should not fill anything else if you want to disable transparent-mode, just set the IsHide
.
If the results were successful, then the kernel sends DEBUGEER_OPERATION_WAS_SUCCESSFULL
to user-mode (as KernelStatus to the above structure), and if it was unsuccessful, then DEBUGEER_ERROR_DEBUGGER_ALREADY_UHIDE
which is an indicator that HyperDbg was not already in transparent-mode.
Remarks
This command will continue the debuggee for some time (in Debugger Mode). This means that you lose the current context (registers & memory) after executing this command.
Requirements
None
Related
Last updated