diff options
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' } - |