diff options
author | Harmj0y <will@harmj0y.net> | 2016-03-11 17:45:46 -0500 |
---|---|---|
committer | Harmj0y <will@harmj0y.net> | 2016-03-11 17:45:46 -0500 |
commit | 6a17f759ab1fe4c3cfdbfc33e362c362b4d47da1 (patch) | |
tree | 7d46904a8b4d2675a00329840da16a8c446812e4 /Privesc/Privesc.psd1 | |
parent | dee094a993642894d4542c6bc8c11864863e4536 (diff) | |
download | PowerSploit-6a17f759ab1fe4c3cfdbfc33e362c362b4d47da1.tar.gz PowerSploit-6a17f759ab1fe4c3cfdbfc33e362c362b4d47da1.zip |
Added Get-System to Privesc/
Added Pester tests for Get-System
Diffstat (limited to 'Privesc/Privesc.psd1')
-rw-r--r-- | Privesc/Privesc.psd1 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Privesc/Privesc.psd1 b/Privesc/Privesc.psd1 index 9777f2a..d3d9a97 100644 --- a/Privesc/Privesc.psd1 +++ b/Privesc/Privesc.psd1 @@ -22,7 +22,7 @@ Description = 'PowerSploit Privesc Module' PowerShellVersion = '2.0' # Functions to export from this module -FunctionsToExport = @( +FunctionsToExport = @( 'Find-DLLHijack', 'Find-PathHijack', 'Get-ApplicationHost', @@ -43,11 +43,12 @@ FunctionsToExport = @( 'Write-HijackDll', 'Write-ServiceBinary', 'Write-UserAddMSI', - 'Get-SiteListPassword' + 'Get-SiteListPassword', + 'Get-System' ) # List of all files packaged with this module -FileList = 'Privesc.psm1', 'PowerUp.ps1', 'README.md' +FileList = 'Privesc.psm1', 'Get-SiteListPassword.ps1', 'Get-System.ps1', 'PowerUp.ps1', 'README.md' } |