diff options
author | bitform <matt@exploit-monday.com> | 2013-01-21 08:33:51 -0500 |
---|---|---|
committer | bitform <matt@exploit-monday.com> | 2013-01-21 08:33:51 -0500 |
commit | 40eb187bca6a985ce7d24b19ac54c47ade285858 (patch) | |
tree | 1c3254a0eb82a9595690fed0900075044356252b /ReverseEngineering | |
parent | 46aead39c6f8d04b00b3c3f2aad10b7948aa003f (diff) | |
download | PowerSploit-40eb187bca6a985ce7d24b19ac54c47ade285858.tar.gz PowerSploit-40eb187bca6a985ce7d24b19ac54c47ade285858.zip |
Consistency improvements in comment-based help
Diffstat (limited to 'ReverseEngineering')
-rw-r--r-- | ReverseEngineering/Get-ILDisassembly.ps1 | 4 | ||||
-rw-r--r-- | ReverseEngineering/Get-KernelModuleInfo.ps1 | 2 | ||||
-rw-r--r-- | ReverseEngineering/Get-Member.ps1 | 2 | ||||
-rw-r--r-- | ReverseEngineering/Get-MethodAddress.ps1 | 2 | ||||
-rw-r--r-- | ReverseEngineering/Get-PEB.ps1 | 2 | ||||
-rw-r--r-- | ReverseEngineering/Get-Strings.ps1 | 2 | ||||
-rw-r--r-- | ReverseEngineering/Get-StructFromMemory.ps1 | 2 |
7 files changed, 9 insertions, 7 deletions
diff --git a/ReverseEngineering/Get-ILDisassembly.ps1 b/ReverseEngineering/Get-ILDisassembly.ps1 index 623d904..b3b615e 100644 --- a/ReverseEngineering/Get-ILDisassembly.ps1 +++ b/ReverseEngineering/Get-ILDisassembly.ps1 @@ -3,7 +3,9 @@ function Get-ILDisassembly <#
.SYNOPSIS
-PowerSploit Module - Get-ILDisassembly
+A MSIL (Microsoft Intermediate Language) disassembler.
+
+PowerSploit Function: Get-ILDisassembly
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
diff --git a/ReverseEngineering/Get-KernelModuleInfo.ps1 b/ReverseEngineering/Get-KernelModuleInfo.ps1 index f6f8221..cb7b73e 100644 --- a/ReverseEngineering/Get-KernelModuleInfo.ps1 +++ b/ReverseEngineering/Get-KernelModuleInfo.ps1 @@ -5,7 +5,7 @@ Returns loaded kernel module information.
-PowerSploit Module - Get-KernelModuleInfo
+PowerSploit Function: Get-KernelModuleInfo
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
diff --git a/ReverseEngineering/Get-Member.ps1 b/ReverseEngineering/Get-Member.ps1 index 30d29f4..2f04deb 100644 --- a/ReverseEngineering/Get-Member.ps1 +++ b/ReverseEngineering/Get-Member.ps1 @@ -5,7 +5,7 @@ function Get-Member Gets the properties and methods of objects.
-PowerSploit Module - Get-Member
+PowerSploit Proxy Function: Get-Member
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause (Except for the help documentation derived from the original Get-Member)
Required Dependencies: None
diff --git a/ReverseEngineering/Get-MethodAddress.ps1 b/ReverseEngineering/Get-MethodAddress.ps1 index bd6c627..656d1bd 100644 --- a/ReverseEngineering/Get-MethodAddress.ps1 +++ b/ReverseEngineering/Get-MethodAddress.ps1 @@ -5,7 +5,7 @@ Get the unmanaged function address of a .NET method.
-PowerSploit Module - Get-MethodAddress
+PowerSploit Function: Get-MethodAddress
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
diff --git a/ReverseEngineering/Get-PEB.ps1 b/ReverseEngineering/Get-PEB.ps1 index dbb95a0..4985da5 100644 --- a/ReverseEngineering/Get-PEB.ps1 +++ b/ReverseEngineering/Get-PEB.ps1 @@ -5,7 +5,7 @@ Returns the process environment block (PEB) of a process.
-PowerSploit Module - Get-PEB
+PowerSploit Function: Get-PEB
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
diff --git a/ReverseEngineering/Get-Strings.ps1 b/ReverseEngineering/Get-Strings.ps1 index 87f5f6a..7acb9f1 100644 --- a/ReverseEngineering/Get-Strings.ps1 +++ b/ReverseEngineering/Get-Strings.ps1 @@ -5,7 +5,7 @@ Gets strings from a file.
-PowerSploit Module - Inject-Shellcode
+PowerSploit Function: Get-Strings
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
diff --git a/ReverseEngineering/Get-StructFromMemory.ps1 b/ReverseEngineering/Get-StructFromMemory.ps1 index 9a265c5..ccf6d5b 100644 --- a/ReverseEngineering/Get-StructFromMemory.ps1 +++ b/ReverseEngineering/Get-StructFromMemory.ps1 @@ -5,7 +5,7 @@ Marshals data from an unmanaged block of memory in an arbitrary process to a newly allocated managed object of the specified type.
-PowerSploit Module - Get-StructFromMemory
+PowerSploit Function: Get-StructFromMemory
Author: Matthew Graeber (@mattifestation)
License: BSD 3-Clause
Required Dependencies: None
|