mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2025-03-04 15:27:18 +00:00
Update Windows - Privilege Escalation.md
added Get-Process to list processes
This commit is contained in:
parent
5163ef902c
commit
1fc8b57c85
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue