| name | T1110.002_password-cracking |
| description | Adversaries may use password cracking to attempt to recover usable credentials, such as plaintext passwords, when credential material such as password hashes are obtained. |
| category | authentication |
| version | 18.1 |
| author | cyberstrike-official |
| tags | ["mitre-attack","enterprise","t1110.002","credential-access","linux","macos","windows","network-devices","office-suite","identity-provider","sub-technique"] |
| technique_id | T1110.002 |
| tactic | credential-access |
| all_tactics | ["credential-access"] |
| platforms | ["Linux","macOS","Windows","Network Devices","Office Suite","Identity Provider"] |
| mitre_url | https://attack.mitre.org/techniques/T1110/002 |
| tech_stack | ["linux","macos","windows","network devices","office","identity"] |
| cwe_ids | ["CWE-522"] |
| chains_with | ["T1110","T1110.001","T1110.003","T1110.004"] |
| prerequisites | ["T1110"] |
| severity_boost | {"T1110":"Chain with T1110 for deeper attack path","T1110.001":"Chain with T1110.001 for deeper attack path","T1110.003":"Chain with T1110.003 for deeper attack path"} |
T1110.002 Password Cracking
Sub-technique of: T1110
High-Level Description
Adversaries may use password cracking to attempt to recover usable credentials, such as plaintext passwords, when credential material such as password hashes are obtained. OS Credential Dumping can be used to obtain password hashes, this may only get an adversary so far when Pass the Hash is not an option. Further, adversaries may leverage Data from Configuration Repository in order to obtain hashed credentials for network devices.
Techniques to systematically guess the passwords used to compute hashes are available, or the adversary may use a pre-computed rainbow table to crack hashes. Cracking hashes is usually done on adversary-controlled systems outside of the target network. The resulting plaintext password resulting from a successfully cracked hash may be used to log into systems, resources, and services in which the account has access.
Kill Chain Phase
- Credential Access (TA0006)
Platforms: Linux, macOS, Windows, Network Devices, Office Suite, Identity Provider
What to Check
How to Test
Atomic Red Team Tests
The following tests are from Atomic Red Team and provide actionable ways to test this technique:
Atomic Test 1: Password Cracking with Hashcat
Execute Hashcat.exe with provided SAM file from registry of Windows and Password list to crack against
Supported Platforms: windows
Elevation Required: Yes
cd #{hashcat_exe}\..
#{hashcat_exe} -a 0 -m 1000 -r .\rules\Incisive-leetspeak.rule #{input_file_sam} #{input_file_passwords}
Dependencies:
- Hashcat must exist on disk at specified location (#{hashcat_exe})