Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Commit 8c2411c

Browse files
author
mattifestation
committed
Get-VaultCredential now takes the singular form.
1 parent dc3cab2 commit 8c2411c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Exfiltration/Exfiltration.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Description = 'PowerSploit Exfiltration Module'
2525
PowerShellVersion = '2.0'
2626

2727
# Format files (.ps1xml) to be loaded when importing this module
28-
FormatsToProcess = 'Get-VaultCredentials.ps1xml'
28+
FormatsToProcess = 'Get-VaultCredential.ps1xml'
2929

3030
# Functions to export from this module
3131
FunctionsToExport = '*'
@@ -46,6 +46,6 @@ ModuleList = @(@{ModuleName = 'Exfiltration'; ModuleVersion = '1.0.0.0'; GUID =
4646
FileList = 'Exfiltration.psm1', 'Exfiltration.psd1', 'Get-TimedScreenshot.ps1', 'Out-Minidump.ps1',
4747
'Get-Keystrokes.ps1', 'Get-GPPPassword.ps1', 'Usage.md', 'Invoke-Mimikatz.ps1',
4848
'Invoke-NinjaCopy.ps1', 'Invoke-TokenManipulation.ps1', 'Invoke-CredentialInjection.ps1',
49-
'VolumeShadowCopyTools.ps1', 'Get-VaultCredentials.ps1', 'Get-VaultCredentials.ps1xml'
49+
'VolumeShadowCopyTools.ps1', 'Get-VaultCredential.ps1', 'Get-VaultCredential.ps1xml'
5050

5151
}

Exfiltration/Get-VaultCredentials.ps1 renamed to Exfiltration/Get-VaultCredential.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
function Get-VaultCredentials
1+
function Get-VaultCredential
22
{
33
<#
44
.SYNOPSIS
55
66
Displays Windows vault credential objects including cleartext web credentials.
77
8-
PowerSploit Function: Get-VaultCredentials
8+
PowerSploit Function: Get-VaultCredential
99
Author: Matthew Graeber (@mattifestation)
1010
License: BSD 3-Clause
1111
Required Dependencies: None
1212
Optional Dependencies: None
1313
1414
.DESCRIPTION
1515
16-
Get-VaultCredentials enumerates and displays all credentials stored in the Windows
16+
Get-VaultCredential enumerates and displays all credentials stored in the Windows
1717
vault. Web credentials, specifically are displayed in cleartext. This script was
1818
inspired by the following C implementation: http://www.oxid.it/downloads/vaultdump.txt
1919
2020
.EXAMPLE
2121
22-
Get-VaultCredentials
22+
Get-VaultCredential
2323
2424
.NOTES
2525

0 commit comments

Comments
 (0)