Merge pull request #197 from guanicoe/patch-2

Update Windows - Privilege Escalation.md
This commit is contained in:
Swissky 2020-05-03 23:17:05 +02:00 committed by GitHub
commit 5c7e67b05d
No known key found for this signature in database
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
```