diff options
author | Dave Hull <dave.hull@tanium.com> | 2017-09-08 16:33:11 -0500 |
---|---|---|
committer | Dave Hull <dave.hull@tanium.com> | 2017-09-08 16:33:11 -0500 |
commit | 6eb3c6f281f0812a103283d1da80be14bb04f944 (patch) | |
tree | cfe2e46596ef251274e954c267c5634d62991da2 /Privesc/Privesc.psd1 | |
parent | bf652bcd261c2c74445c2aa1b4e283c4bf167109 (diff) | |
parent | 3d0d32d9ee6af70f0dfd5ecfe809a49a65d6822d (diff) | |
download | PowerSploit-6eb3c6f281f0812a103283d1da80be14bb04f944.tar.gz PowerSploit-6eb3c6f281f0812a103283d1da80be14bb04f944.zip |
Merge branch 'dev' of github.com:PowerShellMafia/PowerSploit into dev
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 867c7ec..bcd2443 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 Schroeder' +Author = 'Will Schroeder (@harmj0y)' # Copyright statement for this module Copyright = 'BSD 3-Clause' @@ -23,38 +23,40 @@ PowerShellVersion = '2.0' # Functions to export from this module FunctionsToExport = @( - 'Add-ServiceDacl', - 'Find-PathDLLHijack', - 'Find-ProcessDLLHijack', - 'Get-ApplicationHost', - 'Get-CachedGPPPassword', - 'Get-CurrentUserTokenGroupSid', 'Get-ModifiablePath', - 'Get-ModifiableRegistryAutoRun', - 'Get-ModifiableScheduledTaskFile', - 'Get-ModifiableService', + 'Get-ProcessTokenGroup', + 'Get-ProcessTokenPrivilege', + 'Enable-Privilege', + 'Add-ServiceDacl', + 'Set-ServiceBinaryPath', + 'Test-ServiceDaclPermission', + 'Get-UnquotedService', 'Get-ModifiableServiceFile', - 'Get-RegistryAlwaysInstallElevated', - 'Get-RegistryAutoLogon', + 'Get-ModifiableService', 'Get-ServiceDetail', - 'Get-ServiceUnquoted', - 'Get-SiteListPassword', - 'Get-System', - 'Get-UnattendedInstallFile', - 'Get-Webconfig', - 'Install-ServiceBinary', - 'Invoke-AllChecks', 'Invoke-ServiceAbuse', + 'Write-ServiceBinary', + 'Install-ServiceBinary', 'Restore-ServiceBinary', - 'Set-ServiceBinPath', - 'Test-ServiceDaclPermission', + 'Find-ProcessDLLHijack', + 'Find-PathDLLHijack', 'Write-HijackDll', - 'Write-ServiceBinary', - 'Write-UserAddMSI' + 'Get-RegistryAlwaysInstallElevated', + 'Get-RegistryAutoLogon', + 'Get-ModifiableRegistryAutoRun', + 'Get-ModifiableScheduledTaskFile', + 'Get-UnattendedInstallFile', + 'Get-WebConfig', + 'Get-ApplicationHost', + 'Get-SiteListPassword', + 'Get-CachedGPPPassword', + 'Write-UserAddMSI', + 'Invoke-EventVwrBypass', + 'Invoke-PrivescAudit', + 'Get-System' ) # List of all files packaged with this module FileList = 'Privesc.psm1', 'Get-System.ps1', 'PowerUp.ps1', 'README.md' } - |