Library of Leaks
Search by keyword (full name, email, company) in leaked documents, emails, tables, images and other files.
#OSINT
Search by keyword (full name, email, company) in leaked documents, emails, tables, images and other files.
#OSINT
Searching Security Logs Using wevtutil
Searching Security Logs Using Get-WinEvent
PS: C:\logger> wevtutil qe Security /rd:true /f:text | Select-String "/user"
Searching Security Logs Using Get-WinEvent
Get-WinEvent -LogName security | where { $_.ID -eq 4688 -and $_.Properties[8].Value -like '*/user*'} | Select-Object @{name='CommandLine';expression={ $_.Properties[8].Value }}