diff options
author | mattifestation <mattgraeber@gmail.com> | 2013-09-29 17:12:03 -0400 |
---|---|---|
committer | clymb3r <bialek.joseph@gmail.com> | 2013-11-03 22:48:47 -0800 |
commit | 9fbb4ec3c39e0e42ffdfa55bdbb36aedd39e4216 (patch) | |
tree | 1252dece2c5051cf2c8782d4b225641e7811ffb2 /PETools/Get-LibSymbols.format.ps1xml | |
parent | d269eec01d451745a50686495275e9525712b8b9 (diff) | |
download | PowerSploit-9fbb4ec3c39e0e42ffdfa55bdbb36aedd39e4216.tar.gz PowerSploit-9fbb4ec3c39e0e42ffdfa55bdbb36aedd39e4216.zip |
Added Get-LibSymbols
Get-LibSymbols parses Microsoft .lib files and displays decorated and
undecorated symbols.
Diffstat (limited to 'PETools/Get-LibSymbols.format.ps1xml')
-rw-r--r-- | PETools/Get-LibSymbols.format.ps1xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/PETools/Get-LibSymbols.format.ps1xml b/PETools/Get-LibSymbols.format.ps1xml new file mode 100644 index 0000000..41747cb --- /dev/null +++ b/PETools/Get-LibSymbols.format.ps1xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8" ?> +<Configuration> + <ViewDefinitions> + <View> + <Name>SymbolTypeView</Name> + <ViewSelectedBy> + <TypeName>COFF.SymbolInfo</TypeName> + </ViewSelectedBy> + <ListControl> + <ListEntries> + <ListEntry> + <ListItems> + <ListItem> + <PropertyName>SymbolType</PropertyName> + </ListItem> + <ListItem> + <PropertyName>Module</PropertyName> + </ListItem> + <ListItem> + <PropertyName>DecoratedName</PropertyName> + </ListItem> + <ListItem> + <PropertyName>UndecoratedName</PropertyName> + </ListItem> + </ListItems> + </ListEntry> + </ListEntries> + </ListControl> + </View> + </ViewDefinitions> +</Configuration>
\ No newline at end of file |