Password harvesting
Unattended installations
The following locations may contain administrative credentials that are used in unattended installations:
C:\Unattend.xml
C:\Windows\Panther\Unattend.xml
C:\Windows\Panther\Unattend\Unattend.xml
C:\Windows\system32\sysprep.inf
C:\Windows\system32\sysprep\sysprep.xml
Powershell History
The Powershell history can be viewed using Powershell at the file path: $Env:userprofile\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadline\ConsoleHost_history.txt
To view the file from a command prompt (cmd.exe
), replace the $Env:userprofile
at the start of the previously shown path to %userprofile%
.
Powershell
Command prompt (cmd.exe)
The
type
command is an alias for theGet-Content
cmdlet.
Purpose of viewing the Powershell history:
There may be instances where there might be plaintext passwords provided directly to commands for user creation, login, etc. These passwords can be retrieved by viewingh the history.
Saved credentials
View the stored credentials
The example below shows that the credentials for a user rand_username
is stored:
We can used the stored credentials to run command as the user:
Internet Information Services (IIS)
The internet information services is a default web server on Windows installations. The configuration file is named web.config
, which can store passwords for authentication for various services. Depending on the installed version of IIS, the web.config
file can be found in the following locations:
C:\inetpub\wwwroot\web.config
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\web.config
The following command allows us to find database connection strings from the web.config
file:
This command consists of two parts separated by the pipe (|
) operator:
type C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\web.config
View the contents of the
web.config
file
findstr connectionString
Utilizes the
findstr
command (similar to thegrep
command in Unix based systems) to find filter out the portion of the contents regarding the database connection strings
Retrieve credentials from software
1. Putty
The following command searches for stored proxy credentials under Putty:
The reg query
command is used to retrieve or query information from the Windows registry. The /f
flag is used to filter strings, while the /s
flag is used to specify the command to search recursively.
Simon Tatham is the creator of PuTTY (and his name is part of the path), not the username for which we are retrieving the password.
Last updated