aboutsummaryrefslogtreecommitdiff
path: root/ReverseEngineering
diff options
context:
space:
mode:
Diffstat (limited to 'ReverseEngineering')
-rw-r--r--ReverseEngineering/Get-ILDisassembly.ps14
-rw-r--r--ReverseEngineering/Get-KernelModuleInfo.ps12
-rw-r--r--ReverseEngineering/Get-Member.ps12
-rw-r--r--ReverseEngineering/Get-MethodAddress.ps12
-rw-r--r--ReverseEngineering/Get-PEB.ps12
-rw-r--r--ReverseEngineering/Get-Strings.ps12
-rw-r--r--ReverseEngineering/Get-StructFromMemory.ps12
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