.start (start a new process)
Description of the '.start' command in HyperDbg.
Command
.start
Syntax
.start [path Path (string)] [Parameters (string)]
Description
Starts a program with the specific parameters and breaks when the PE file reaches the entrypoint.
The user-mode debugger is still in the beta version and not stable. We decided to exclude it from this release and release it in future versions. If you want to test the user-mode debugger in VMI Mode, you should build HyperDbg with special instructions. Please follow the instruction here.
In contrast with the kernel debugger, the user debugger is still very basic and needs a lot of tests and improvements. We highly recommend not to run the user debugger in your bare metal system. Instead, run it on a supported virtual machine to won't end up with a Blue Screen of Death (BSOD) in your primary device. Please keep reporting the issues to improve the user debugger.
This command won't use any Windows API for intercepting and pausing threads, and everything is done at the hypervisor level.
Parameters
[path Path (string)]
The target file path
[Parameters (string)] (optional)
The parameter(s) to the file
Examples
Imagine we want to start a program without parameters.
If your file path contains a space character, you should write the path between two quotes; otherwise, it will be interpreted as parameters.
If you want to pass parameters to your target file. Imagine we want to pass -m 1 -o out.txt
parameters to our exe file.
IOCTL
This function works by calling DeviceIoControl with IOCTL = IOCTL_DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS
. You have to send it in the following structure.
First, you should create a process in the suspended state, then you should fill the ProcessId and ThreadId, set the IsStartingNewProcess to TRUE
and Action to DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS_ACTION_ATTACH
in the above structure, when the IOCTL returns from the kernel, other parts are filled with appropriate data from the process.
After getting the results from the kernel and if the Result is equal to DEBUGGER_OPERATION_WAS_SUCCESSFULL
you should pass this IOCTL to the kernel again, but this time, change the Action to DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS_ACTION_REMOVE_HOOKS
.
The Action can be from the following enum:
Remarks
This command cannot be used simultaneously with the '!mode' command.
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
.restart (restart the process)
.detach (detach from the process)
.switch (show the list and switch between active debugging threads)
Last updated