LOLBAS/yml/OtherMSBinaries/Cdb.yml

43 lines
1.4 KiB
YAML
Raw Normal View History

2018-06-09 00:15:06 +02:00
---
Name: Cdb.exe
Description: Debugging tool included with Windows Debugging Tools.
Author: 'Oddvar Moe'
Created: 2018-05-25
2018-06-09 00:15:06 +02:00
Commands:
- Command: cdb.exe -cf x64_calc.wds -o notepad.exe
Description: Launch 64-bit shellcode from the x64_calc.wds file using cdb.exe.
Usecase: Local execution of assembly shellcode.
Category: Execute
Privileges: User
MitreID: T1218
OperatingSystem: Windows
2021-02-08 14:28:25 +01:00
- Command: |
cdb.exe -pd -pn <process_name>
.shell <cmd>
Description: Attaching to any process and executing shell commands
Usecase: Run a shell command under a trusted Microsoft signed binary
Category: Execute
Privileges: User
2021-11-05 19:58:26 +01:00
MitreID: T1218
2021-02-08 14:28:25 +01:00
OperatingSystem: Windows
Full_Path:
- Path: C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe
- Path: C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\cdb.exe
Code_Sample:
- Code:
Detection:
- IOC:
2018-06-09 00:15:06 +02:00
Resources:
- Link: http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html
- Link: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options
- Link: https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda
2021-02-08 14:28:25 +01:00
- Link: https://blog.thecybersecuritytutor.com/the-power-of-cdb-debugging-tool/
2021-11-05 19:58:26 +01:00
Acknowledgement:
- Person: Matt Graeber
Handle: '@mattifestation'
2021-02-08 14:28:25 +01:00
- Person: mr.d0x
Handle: '@mrd0x'
- Person: Spooky Sec
2021-02-12 20:26:16 +01:00
Handle: '@sec_spooky'
2021-11-05 19:58:26 +01:00
---