diff options
author | Matt Graeber <mattifestation@users.noreply.github.com> | 2015-12-29 09:22:07 -0500 |
---|---|---|
committer | Matt Graeber <mattifestation@users.noreply.github.com> | 2015-12-29 09:22:07 -0500 |
commit | 872d4b0eb74072465980567d5cf2cb42fa0283d5 (patch) | |
tree | d1dd4dfd4d134a525b17444be35dcaa5144f948d /Privesc | |
parent | 9f183e36518176c4299eed5c68b7deac7f4e8025 (diff) | |
parent | bc7efdf22914c722d88eb70fac01a4dc5493c87b (diff) | |
download | PowerSploit-872d4b0eb74072465980567d5cf2cb42fa0283d5.tar.gz PowerSploit-872d4b0eb74072465980567d5cf2cb42fa0283d5.zip |
Merge pull request #105 from stufus/find_ad_managed_security_groups
Find AD Managed Security Groups
Diffstat (limited to 'Privesc')
-rw-r--r-- | Privesc/Privesc.psd1 | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 34ebf7b..2ccdb8e 100644 --- a/Privesc/Privesc.psd1 +++ b/Privesc/Privesc.psd1 @@ -23,26 +23,26 @@ 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-ApplicationHost', 'Get-RegAlwaysInstallElevated', 'Get-RegAutoLogon', + 'Get-ServiceDetail', + 'Get-ServiceFilePermission', + 'Get-ServicePermission', + 'Get-ServiceUnquoted', + 'Get-UnattendedInstallFile', 'Get-VulnAutoRun', 'Get-VulnSchTask', - 'Get-UnattendedInstallFile', 'Get-Webconfig', - 'Get-ApplicationHost', - 'Write-UserAddMSI', - 'Invoke-AllChecks' + 'Install-ServiceBinary', + 'Invoke-AllChecks', + 'Invoke-ServiceAbuse', + 'Restore-ServiceBinary', + 'Write-HijackDll', + 'Write-ServiceBinary', + 'Write-UserAddMSI' ) # List of all files packaged with this module |