Cyborg 10 -> 15
Cyborg 10 -> 11
Get-AppLockerPolicy -Effective -XmlPassword: terminated!99Additional useful stuff:
1. See examples: Get-Help Get-AppLockerPolicy -examples
2. Find location of a file:
Get-ChildItem -Path c:\ -Recurse *.exe -ErrorAction SilentlyContinue | ?{$_.name -eq "ill_be_back.exe"}Cyborg 11 -> 12
Find the IIS log file:
Get-ChildItem -Path C:\ -Recurse *.log -ErrorAction SilentlyContinue | Select-String "Internet Information Services" -List | Select Path
Finding the password:
Get-Content C:\inetpub\logs\logfiles\w3svc1\u_ex160413.log | Select-String "password" -Exclude "Mozilla,Opera"Password: spaceballsCyborg 12 -> 13
Cyborg 13 -> 14
Cyborg 14 -> 15
Last updated