diff options
author | HarmJ0y <will@harmj0y.net> | 2016-06-04 19:09:22 -0700 |
---|---|---|
committer | HarmJ0y <will@harmj0y.net> | 2016-06-04 19:09:22 -0700 |
commit | 5cbe3bac1051b4626dd3993688e0652e34247a41 (patch) | |
tree | 9a882344069a0808f7f9286341b2afeb27bec97a /Privesc/Privesc.psd1 | |
parent | 5660218b38eaacb95679dde712ecb6857143cfa3 (diff) | |
parent | e83cfae7981d970ca138566d2d5214cbd573494e (diff) | |
download | PowerSploit-5cbe3bac1051b4626dd3993688e0652e34247a41.tar.gz PowerSploit-5cbe3bac1051b4626dd3993688e0652e34247a41.zip |
Merge pull request #148 from PowerShellMafia/powerup_psreflect
PowerUp PSReflect
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 4e66883..97b7652 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,33 @@ PowerShellVersion = '2.0' # Functions to export from this module FunctionsToExport = @( - 'Find-DLLHijack', - 'Find-PathHijack', + 'Add-ServiceDacl', + 'Find-PathDLLHijack', + 'Find-ProcessDLLHijack', 'Get-ApplicationHost', - 'Get-RegAlwaysInstallElevated', - 'Get-RegAutoLogon', + 'Get-CurrentUserTokenGroupSid', + 'Get-ModifiablePath', + 'Get-ModifiableRegistryAutoRun', + 'Get-ModifiableScheduledTaskFile', + 'Get-ModifiableService', + 'Get-ModifiableServiceFile', + 'Get-RegistryAlwaysInstallElevated', + 'Get-RegistryAutoLogon', '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 |