diff options
author | Matt Graeber <mattgraeber@gmail.com> | 2013-07-09 20:17:01 -0400 |
---|---|---|
committer | Matt Graeber <mattgraeber@gmail.com> | 2013-07-09 20:17:01 -0400 |
commit | 55a6dbd019624d4e8de0a0c77c042a3a5963d32a (patch) | |
tree | d9aed28869bddf20a815f8b9a27b2603b417dfc5 /PETools/PETools.psd1 | |
parent | 030fc3b43bf853ebdc10a9dbe8ff2439faf7146c (diff) | |
download | PowerSploit-55a6dbd019624d4e8de0a0c77c042a3a5963d32a.tar.gz PowerSploit-55a6dbd019624d4e8de0a0c77c042a3a5963d32a.zip |
Added Get-ObjDump
Get-ObjDump parses and return information about one or more Windows
object files. It is similar to dumpbin but it returns objects!
Diffstat (limited to 'PETools/PETools.psd1')
-rw-r--r-- | PETools/PETools.psd1 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PETools/PETools.psd1 b/PETools/PETools.psd1 index ef3db56..696eb57 100644 --- a/PETools/PETools.psd1 +++ b/PETools/PETools.psd1 @@ -52,7 +52,7 @@ PowerShellVersion = '2.0' # TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
-FormatsToProcess = 'PETools.format.ps1xml'
+FormatsToProcess = 'PETools.format.ps1xml', 'Get-ObjDump.format.ps1xml'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
@@ -74,7 +74,8 @@ ModuleList = @(@{ModuleName = 'PETools'; ModuleVersion = '1.0.0.0'; GUID = 'd150 # List of all files packaged with this module
FileList = 'PETools.psm1', 'PETools.psd1', 'PETools.format.ps1xml', 'Get-DllLoadPath.ps1',
- 'Get-PEArchitecture.ps1', 'Get-PEHeader.ps1', 'Usage.md'
+ 'Get-PEArchitecture.ps1', 'Get-PEHeader.ps1', 'Get-ObjDump.ps1', 'Get-ObjDump.format.ps1xml',
+ 'Usage.md'
# Private data to pass to the module specified in RootModule/ModuleToProcess
# PrivateData = ''
|