diff options
author | Harmj0y <will@harmj0y.net> | 2016-06-02 02:14:38 -0400 |
---|---|---|
committer | Harmj0y <will@harmj0y.net> | 2016-06-02 02:14:38 -0400 |
commit | 8083c1e1bb20ae4ceed16298bd2eeddf9cb5a70a (patch) | |
tree | 275856fb2457faba06998041bcf65e0f1015c3e8 /Privesc/Privesc.psd1 | |
parent | 3c209ee6b34f6fb4052594bb8aa8422d63ef3e35 (diff) | |
download | PowerSploit-8083c1e1bb20ae4ceed16298bd2eeddf9cb5a70a.tar.gz PowerSploit-8083c1e1bb20ae4ceed16298bd2eeddf9cb5a70a.zip |
Updated Privesc README.md and .psd1 to reflect the new PowerUp function names.
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 4e66883..fe964a3 100644 --- a/Privesc/Privesc.psd1 +++ b/Privesc/Privesc.psd1 @@ -10,7 +10,7 @@ ModuleVersion = '3.0.0.0' GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56' # Author of this module -Author = 'Will Schroder' +Author = 'Will Schroeder' # Copyright statement for this module Copyright = 'BSD 3-Clause' @@ -23,28 +23,32 @@ PowerShellVersion = '2.0' # Functions to export from this module FunctionsToExport = @( - 'Find-DLLHijack', + 'Add-ServiceDacl', 'Find-PathHijack', + 'Find-ProcessDLLHijack', 'Get-ApplicationHost', - 'Get-RegAlwaysInstallElevated', - 'Get-RegAutoLogon', + 'Get-ModifiablePath', + 'Get-ModifiableScheduledTaskFile', + 'Get-ModifiableService', + 'Get-ModifiableServiceFile', + 'Get-RegistryAlwaysInstallElevated', + 'Get-RegistryAutoLogon', + 'Get-RegistryAutoRun', 'Get-ServiceDetail', - 'Get-ServiceFilePermission', - 'Get-ServicePermission', 'Get-ServiceUnquoted', + 'Get-SiteListPassword', + 'Get-System', 'Get-UnattendedInstallFile', - 'Get-VulnAutoRun', - 'Get-VulnSchTask', 'Get-Webconfig', 'Install-ServiceBinary', 'Invoke-AllChecks', 'Invoke-ServiceAbuse', 'Restore-ServiceBinary', + 'Set-ServiceBinPath', + 'Test-ServiceDaclPermission', 'Write-HijackDll', 'Write-ServiceBinary', - 'Write-UserAddMSI', - 'Get-SiteListPassword', - 'Get-System' + 'Write-UserAddMSI' ) # List of all files packaged with this module |