Cdb.exe

Debugging tool included with Windows Debugging Tools.

Execute

Local execution of assembly shellcode.

cdb.exe -cf {PATH:.wds} -o notepad.exe

Launch 64-bit shellcode from the specified .wds file using cdb.exe. — MITRE: T1127 — Privileges: User

Run a shell command under a trusted Microsoft signed binary

cdb.exe -pd -pn {process_name}
.shell {CMD}

Attaching to any process and executing shell commands. — MITRE: T1127 — Privileges: User

Run commands under a trusted Microsoft signed binary

cdb.exe -c {PATH:.txt} "{CMD}"

Execute arbitrary commands and binaries using a debugging script (see Resources section for a sample file). — MITRE: T1127 — Privileges: User