diff options
author | PowerShellMafia <PowerShellMafia@users.noreply.github.com> | 2015-12-18 16:33:59 -0800 |
---|---|---|
committer | PowerShellMafia <PowerShellMafia@users.noreply.github.com> | 2015-12-18 16:33:59 -0800 |
commit | 9e771d15bf19ab3c2ac196393c088ecdab6c9a73 (patch) | |
tree | 58927893ecb9289ad1de64d3a67eb58d00e4b762 /Privesc/Privesc.psd1 | |
parent | 9f78286ea7b0ec65d2aa09893a076864dd8d14e9 (diff) | |
parent | 9f183e36518176c4299eed5c68b7deac7f4e8025 (diff) | |
download | PowerSploit-3.0.0.tar.gz PowerSploit-3.0.0.zip |
Merge pull request #102 from PowerShellMafia/devv3.0.0
Merge 3.0 release changes
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 new file mode 100644 index 0000000..34ebf7b --- /dev/null +++ b/Privesc/Privesc.psd1 @@ -0,0 +1,52 @@ +@{ + +# Script module or binary module file associated with this manifest. +ModuleToProcess = 'Privesc.psm1' + +# Version number of this module. +ModuleVersion = '3.0.0.0' + +# ID used to uniquely identify this module +GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56' + +# Author of this module +Author = 'Will Schroder' + +# Copyright statement for this module +Copyright = 'BSD 3-Clause' + +# Description of the functionality provided by this module +Description = 'PowerSploit Privesc Module' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '2.0' + +# Functions to export from this module +FunctionsToExport = @( + 'Get-ServiceUnquoted', + 'Get-ServiceFilePermission', + 'Get-ServicePermission', + 'Get-ServiceDetail', + 'Invoke-ServiceAbuse', + 'Write-ServiceBinary', + 'Install-ServiceBinary', + 'Restore-ServiceBinary', + 'Find-DLLHijack', + 'Find-PathHijack', + 'Write-HijackDll', + 'Get-RegAlwaysInstallElevated', + 'Get-RegAutoLogon', + 'Get-VulnAutoRun', + 'Get-VulnSchTask', + 'Get-UnattendedInstallFile', + 'Get-Webconfig', + 'Get-ApplicationHost', + 'Write-UserAddMSI', + 'Invoke-AllChecks' +) + +# List of all files packaged with this module +FileList = 'Privesc.psm1', 'PowerUp.ps1', 'README.md' + +} + |