aboutsummaryrefslogtreecommitdiff
path: root/PETools/PETools.psm1
diff options
context:
space:
mode:
authorbitform <matt@exploit-monday.com>2012-07-22 15:16:22 -0400
committerbitform <matt@exploit-monday.com>2012-07-22 15:16:22 -0400
commit65ebaea880b1470718f609e1946f950e7fff0d81 (patch)
treea47abcb754d066808e410277920ca82d4dfce1ac /PETools/PETools.psm1
parent72c00d7422ea2df4fe397db099d67c6945d48724 (diff)
downloadPowerSploit-65ebaea880b1470718f609e1946f950e7fff0d81.tar.gz
PowerSploit-65ebaea880b1470718f609e1946f950e7fff0d81.zip
Added Get-PEHeader. PETools is now a module.
Get-PEHeader is a 32 and 64-bit in-memory and on-disk PE parsing utility. PETools is now a PowerShell module that can be loaded with `Import-Module PETools`
Diffstat (limited to 'PETools/PETools.psm1')
-rw-r--r--PETools/PETools.psm14
1 files changed, 4 insertions, 0 deletions
diff --git a/PETools/PETools.psm1 b/PETools/PETools.psm1
new file mode 100644
index 0000000..7f16c2f
--- /dev/null
+++ b/PETools/PETools.psm1
@@ -0,0 +1,4 @@
+# Pull in all of the PE Tools
+. (Join-Path $PSScriptRoot Get-PEHeader.ps1)
+. (Join-Path $PSScriptRoot Get-DllLoadPath.ps1)
+. (Join-Path $PSScriptRoot Get-PEArchitecture.ps1) \ No newline at end of file