Get-VaultCredential now takes the singular form.
This commit is contained in:
parent
dc3cab2c9f
commit
8c2411ccf3
|
|
@ -25,7 +25,7 @@ Description = 'PowerSploit Exfiltration Module'
|
||||||
PowerShellVersion = '2.0'
|
PowerShellVersion = '2.0'
|
||||||
|
|
||||||
# Format files (.ps1xml) to be loaded when importing this module
|
# Format files (.ps1xml) to be loaded when importing this module
|
||||||
FormatsToProcess = 'Get-VaultCredentials.ps1xml'
|
FormatsToProcess = 'Get-VaultCredential.ps1xml'
|
||||||
|
|
||||||
# Functions to export from this module
|
# Functions to export from this module
|
||||||
FunctionsToExport = '*'
|
FunctionsToExport = '*'
|
||||||
|
|
@ -46,6 +46,6 @@ ModuleList = @(@{ModuleName = 'Exfiltration'; ModuleVersion = '1.0.0.0'; GUID =
|
||||||
FileList = 'Exfiltration.psm1', 'Exfiltration.psd1', 'Get-TimedScreenshot.ps1', 'Out-Minidump.ps1',
|
FileList = 'Exfiltration.psm1', 'Exfiltration.psd1', 'Get-TimedScreenshot.ps1', 'Out-Minidump.ps1',
|
||||||
'Get-Keystrokes.ps1', 'Get-GPPPassword.ps1', 'Usage.md', 'Invoke-Mimikatz.ps1',
|
'Get-Keystrokes.ps1', 'Get-GPPPassword.ps1', 'Usage.md', 'Invoke-Mimikatz.ps1',
|
||||||
'Invoke-NinjaCopy.ps1', 'Invoke-TokenManipulation.ps1', 'Invoke-CredentialInjection.ps1',
|
'Invoke-NinjaCopy.ps1', 'Invoke-TokenManipulation.ps1', 'Invoke-CredentialInjection.ps1',
|
||||||
'VolumeShadowCopyTools.ps1', 'Get-VaultCredentials.ps1', 'Get-VaultCredentials.ps1xml'
|
'VolumeShadowCopyTools.ps1', 'Get-VaultCredential.ps1', 'Get-VaultCredential.ps1xml'
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
function Get-VaultCredentials
|
function Get-VaultCredential
|
||||||
{
|
{
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
|
|
||||||
Displays Windows vault credential objects including cleartext web credentials.
|
Displays Windows vault credential objects including cleartext web credentials.
|
||||||
|
|
||||||
PowerSploit Function: Get-VaultCredentials
|
PowerSploit Function: Get-VaultCredential
|
||||||
Author: Matthew Graeber (@mattifestation)
|
Author: Matthew Graeber (@mattifestation)
|
||||||
License: BSD 3-Clause
|
License: BSD 3-Clause
|
||||||
Required Dependencies: None
|
Required Dependencies: None
|
||||||
|
|
@ -13,13 +13,13 @@ Optional Dependencies: None
|
||||||
|
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
|
|
||||||
Get-VaultCredentials enumerates and displays all credentials stored in the Windows
|
Get-VaultCredential enumerates and displays all credentials stored in the Windows
|
||||||
vault. Web credentials, specifically are displayed in cleartext. This script was
|
vault. Web credentials, specifically are displayed in cleartext. This script was
|
||||||
inspired by the following C implementation: http://www.oxid.it/downloads/vaultdump.txt
|
inspired by the following C implementation: http://www.oxid.it/downloads/vaultdump.txt
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
|
|
||||||
Get-VaultCredentials
|
Get-VaultCredential
|
||||||
|
|
||||||
.NOTES
|
.NOTES
|
||||||
|
|
||||||
Loading…
Reference in New Issue