1. Convert the password to Unicode. 2. Hash the Unicode password using the MD4 algorithm. 3. The resulting hash is the NTLM hash.
For example, the NTLM hash of the password "Password123" is: ```plaintext b4b9b02e6f09a9bd760f388b67351e2b ```
* NTLM hashes are typically stored in the Security Accounts Manager (SAM) database and can be viewed using specialized tools, often requiring administrative privileges.
```plaintext Username: John Password: Password123 NTLM Hash: b4b9b02e6f09a9bd760f388b67351e2b ```