1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-24 05:56:27 +02:00

Update Windows - Privilege Escalation.md

added Get-Process to list processes
This commit is contained in:
guanicoe 2020-05-03 21:11:01 +00:00 committed by GitHub
parent 5163ef902c
commit 1fc8b57c85
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -418,6 +418,7 @@ tasklist /v
net start
sc query
Get-Service
Get-Process
Get-WmiObject -Query "Select * from Win32_Process" | where {$_.Name -notlike "svchost*"} | Select Name, Handle, @{Label="Owner";Expression={$_.GetOwner().User}} | ft -AutoSize
```