DbgChild is a stand alone tool for debugging child processes. DbgChild can be used in conjunction with a plugin for a debugger. Currently DbgChild supports a plugin for the x86/x64 x64dbg debugger. Support for DbgChild can be extended to OllyDbg and Immunity debugger if so required via crowdfunding:
- Hook process creation for x86 or x64 child processes
- Patching and unpatching of NTDLL process creation for x86 and x64 child processes
- Process watcher for auto launching of new x64dbg instance when child process detected
- Modify the suspend (pre) and resume (post) logic to adapt to your own requirements
The DbgChild comprises a number of components to accomplish the task of launching a new x64dbg instance when a child process is hooked and detected. These components are:
- CreateProcessPatch.exe - Hook ZwCreateUserProcess (two separate exe files for x86 and x64) and loads DbgChildHookDLL.dll
- DbgChildHookDLL.dll - (two separate dll files for x86 and x64) - outputs process id's to CPIDS folder
- NTDLLEntryPatch.exe - Patches or unpatches LdrInitializeThunk (two separate exe files for x86 and x64)
- DbgChild.dp32 - x64dbg plugin x86
- DbgChild.dp64 - x64dbg plugin x64
- NewProcessWatcher.exe - Watches for new child processes from the CPIDS folder
- x64_post.unicode.txt - Support file
- x64_pre.unicode.txt - Support file
- x86_post.unicode.txt - Support file
- x86_pre.unicode.txt - Support file
Download the latest release of DbgChild here
- Download the latest version of x64dbg here
- Extract the contents of the latest release archive to your x64dbg folder
Once extracted the contents should look something like this:
\x64dbg\NewProcessWatcher.exe
\x64dbg\x64_post.unicode.txt
\x64dbg\x64_pre.unicode.txt
\x64dbg\x86_post.unicode.txt
\x64dbg\x86_pre.unicode.txt
\x64dbg\x32\CreateProcessPatch.exe
\x64dbg\x32\DbgChildHookDLL.dll
\x64dbg\x32\NTDLLEntryPatch.exe
\x64dbg\x32\plugins\DbgChild.dp32
\x64dbg\x32\CPIDS\
\x64dbg\x64\CreateProcessPatch.exe
\x64dbg\x64\DbgChildHookDLL.dll
\x64dbg\x64\NTDLLEntryPatch.exe
\x64dbg\x64\plugins\DbgChild.dp64
\x64dbg\x64\CPIDS\
- Menu options for the DbgChild plugin is available under the "Plugins" menu in the main x64dbg window
Hook Process Creation
- CreateProcessPatch.exe hooks ZwCreateUserProcess and loads DbgChildHookDLL.dll. There is a x86 version and x64 version of CreateProcessPatch.exe
Auto from x32dbg/x64dbg Hook Process Creation
- Toggle option to switch on or off the automatic hooking of the process creation. If it is off, then user must manually select Hook Process Creation at some point before child processes are spawned.
Clear x32|x64\CPIDS
- Clear all process id file entries from the x32\CPIDS or x64\CPIDS folder
Open x32|x64\CPIDS
- Opens in explorer the x32\CPIDS or x64\CPIDS folder
Create New Entry x32|x64\CPIDS
- Adds a new entry to the x32\CPIDS or x64\CPIDS folder
Unpatch NTDLL Entry
- Patches the ntdll.dll LdrInitializeThunk function.
Patch NTDLL Entry
- Unpatches the ntdll.dll LdrInitializeThunk if it has previously been patched
Auto From x32dbg|x64dbg Unpatch NTDLL Entry
- Toggle option to switch on or off the automatic unpatch of the NTDLL entry when 2nd x64dbg instance is launched for child process. If it is off, then user must manually select Unpatch NTDLL Entry in the 2nd x64dbg instance after it has launched
Launch NewProcessWatcher
- Starts NewProcessWatcher.exe which monitors the x32\CPIDS or x64\CPIDS folder for new process id files that are created by DbgChildHookDLL.dll when a child process is detected and is about to be spawned
Launch NewProcessWatcher With Old Processes
-
Launch from x32dbg|x64dbg NewProcessWatcher Without Ask
- Toggle option to switch on or off the automatic prompt to launch NewProcessWatcher. If on then when Hook Process Creation is selected, NewProcessWatcher will automatically launch. If off, then it will display a prompt asking user if they wish to launch NewProcessWatcher
Go to Hook Process Creation
- Shows in the x32dbg|x64dbg cpu disassembly window the location of the hook code
Go to NTDLL Patch
- Shows in the x32dbg|x64dbg cpu disassembly window the location of the ntdll.dll patch
Edit x32|x64 Suspended Command
- Opens x86_pre.unicode.txt or x64_pre.unicode.txt in notepad for editing
Edit x32|x64 Resumed Command
- Opens x86_post.unicode.txt or x64_post.unicode.txt in notepad for editing
Remote x32|x64 PID Hook Process Creation
- Asks for a process id to remotely hook process creation for
Remote x32|x64 PID Patch NTDLL Entry
- Asks for a process id to remotely patch the ntdll.dll LdrInitializeThunk function for
Remote x32|x64 PID Unpatch NTDLL Entry
- Asks for a process id to remotely unpatch the ntdll.dll LdrInitializeThunk if it has previously been patched
Auto From x32|x64 Open Logs
- Toggle option to switch on or off the automatic opening of the log file
Help
- Displays information on the usage of the plugin and its operations
Plugin Info By Dreg
- About dialog box showing information about this plugin
Any donations are gratefully accepted. Donations will be split amongst the following projects and contributors:
To donate to DbgChild, please visit the bountysource page here
- David Reguera Garcia - Dreg: DbgChild coding and design
- Keith Robertson - mrfearless: Documentation, GUI and icons