diff options
author | bitform <matt@exploit-monday.com> | 2013-01-19 16:01:48 -0500 |
---|---|---|
committer | bitform <matt@exploit-monday.com> | 2013-01-19 16:01:48 -0500 |
commit | 773af257bb4970ff5aaa594eafe73204935dd3a6 (patch) | |
tree | 493389bac5d1e8736754f5182472f8474ad57e49 | |
parent | 3eb838eb1e4360b0aeb103fd161db2c240169f9b (diff) | |
download | PowerSploit-773af257bb4970ff5aaa594eafe73204935dd3a6.tar.gz PowerSploit-773af257bb4970ff5aaa594eafe73204935dd3a6.zip |
Added 'Id' parameter documentation to Get-PEB
Forgot to add this. Oops.
-rw-r--r-- | RE_Tools/Get-PEB.ps1 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/RE_Tools/Get-PEB.ps1 b/RE_Tools/Get-PEB.ps1 index 8d0e4ae..d230721 100644 --- a/RE_Tools/Get-PEB.ps1 +++ b/RE_Tools/Get-PEB.ps1 @@ -13,6 +13,10 @@ License: BSD 3-Clause Get-PEB returns a fully parsed process environment block (PEB) of any process. Because the PEB and its underlying structure differ according to OS version and architecture, Get-PEB builds the PEB dynamically at runtime. Get-PEB is designed to work in Windows XP - Windows 8 32/64-bit. It will also return the PEB of Wow64 processes.
+.PARAMETER Id
+
+The process ID of the process whose PEB will be retrieved.
+
.EXAMPLE
C:\PS> $AllPEBs = Get-Process | Get-PEB
|