Debugging tool included with Windows Debugging Tools.
Launch 64-bit shellcode from the specified .wds file using cdb.exe.
cdb.exe -cf {PATH:.wds} -o notepad.exe
Attaching to any process and executing shell commands.
cdb.exe -pd -pn {process_name}
.shell {CMD}
Execute arbitrary commands and binaries using a debugging script (see Resources section for a sample file).
cdb.exe -c {PATH:.txt} "{CMD}"