Reg.exe
This note does not cover the basics of Windows authentication. For an overview of local Windows authentication, reference my Windows Authentication note.
Overview¶
reg.exe is a command-line utility in Microsoft Windows that allows users to interact with the Windows Registry. It is often used to perform tasks such as:
- Adding, modifying, or deleting registry keys and values.
- Querying the registry to retrieve information.
- Loading and unloading registry hives.
- Exporting and importing registry data to and from files.
Using the latter tasks' functionality, we can export entire hives to files (e.g., SYSTEM
, SAM
, and SECURITY
), which can then be extracted and cracked offline.
Usage¶
- When exporting the
SAM
and/orSECURITY
hive(s), make sure to also export theSYSTEM
hive.- The
SYSTEM
hive provides critical system and configuration information thatpypykatz
(and other tools) rely on to locate and parse theSAM
hive, which stores user account security data.
- The
#Export SYSTEM, SAM, and SECURITY hives to files
reg save HKLM\SYTEM <system_outfile>
reg save HKLM\SAM <sam_outfile>
reg save HKLM\SECURITY <security_outfile>
- Next you'll have to have exfil the dump file to your attacker and parse it with with a tool like
pypykatz
.- For lateral movement methods and techniques, reference my Windows File Transfers note.
- For pypykatz usage, reference my pypykatz note.