diff options
author | HarmJ0y <will@harmj0y.net> | 2016-12-12 14:25:20 -0500 |
---|---|---|
committer | HarmJ0y <will@harmj0y.net> | 2016-12-12 14:25:20 -0500 |
commit | eae4695b136a8ef273b7474a5e36641808f12dd7 (patch) | |
tree | c4c6e9b55c8e17461e573e862b23d2791a681080 /Privesc/Privesc.psd1 | |
parent | 863699d97e55fe375fc67ada9e3d99d462cbe1d0 (diff) | |
download | PowerSploit-eae4695b136a8ef273b7474a5e36641808f12dd7.tar.gz PowerSploit-eae4695b136a8ef273b7474a5e36641808f12dd7.zip |
PowerUp update:
-Standardized documentation, including adding output object types and required dependencies to all functions
-Added Get-ProcessTokenPrivilege to enumerate the current (or remote) process token privileges, replacing Get-CurrentUserTokenGroupSid
-Added Enable-Privilege to enable privileges using RtlAdjustPrivilege
-Added @enigma0x3's Invoke-WScriptUACBypass function
-Renamed Invoke-AllChecks to Invoke-PrivescAudit, added alias mapping
-Added tests for Get-ProcessTokenPrivilege, Enable-Privilege, and Invoke-WScriptUACBypass
-Renamed helper functions for consistency
-Passes PSScriptAnalyzer!
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 867c7ec..fb66225 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' @@ -24,37 +24,40 @@ PowerShellVersion = '2.0' # Functions to export from this module FunctionsToExport = @( 'Add-ServiceDacl', + 'Enable-Privilege', 'Find-PathDLLHijack', 'Find-ProcessDLLHijack', 'Get-ApplicationHost', 'Get-CachedGPPPassword', - 'Get-CurrentUserTokenGroupSid', 'Get-ModifiablePath', 'Get-ModifiableRegistryAutoRun', 'Get-ModifiableScheduledTaskFile', 'Get-ModifiableService', 'Get-ModifiableServiceFile', + 'Get-ProcessTokenGroup', + 'Get-ProcessTokenPrivilege', 'Get-RegistryAlwaysInstallElevated', 'Get-RegistryAutoLogon', 'Get-ServiceDetail', - 'Get-ServiceUnquoted', 'Get-SiteListPassword', - 'Get-System', + 'Get-TokenInformation', + 'Get-UnquotedService', 'Get-UnattendedInstallFile', - 'Get-Webconfig', + 'Get-WebConfig', 'Install-ServiceBinary', - 'Invoke-AllChecks', 'Invoke-ServiceAbuse', + 'Invoke-WScriptUACBypass', + 'Invoke-PrivescAudit', 'Restore-ServiceBinary', - 'Set-ServiceBinPath', + 'Set-ServiceBinaryPath', 'Test-ServiceDaclPermission', + 'Write-UserAddMSI', 'Write-HijackDll', 'Write-ServiceBinary', - 'Write-UserAddMSI' + 'Get-System' ) # List of all files packaged with this module FileList = 'Privesc.psm1', 'Get-System.ps1', 'PowerUp.ps1', 'README.md' } - |