Enumerating Windows Domains with rpcclient through SocksProxy == Bypassing Command Line Logging
Last updated
Last updated
This lab shows how it is possible to bypass commandline argument logging when enumerating Windows environments, using Cobalt Strike and its socks proxy (or any other post exploitation tool that supports socks proxying).
In other words - it's possible to enumerate AD (or create/delete AD users, etc.) without the likes of:
net user
net user <bla> /domain
net user <bla> <bla> /add /domain
net localgroup
net groups /domain
and similar commands
...which most likely are monitored by the blue team.
In this lab, it is assumed that the attacker/operator has gained:
code execution on a target system and the beacon is calling back to the team server
valid set of domain credentials for any authenticated user
The below shows a couple of things. First one - two Cobalt Strike sessions:
PID 4112 - original beacon
PID 260 - beacon injected into dllhost process
Second - attacker opens a socks4 proxy on port 7777 on his local kali machine (10.0.0.5) by issuing:
This means that the attacker can now use proxychains to proxy traffic from their kali box through the beacon to the target (attacker ---> beacon ---> end target).
Let's see how this works by firstly updating the proxychains config file:
Once proxychains are configured, the attacker can start enumerating the AD environment through the beacon like so:
Moving on, same way, they can query info about specific AD users:
Enumerate current user's privileges and many more (consult rpcclient for all available commands):
Finally, of course they can run nmap if needed:
Impacket provides even more tools to enumerate remote systems through compromised boxes. See the below example gif.
This is what happens - attacker (10.0.0.5) uses proxychains with impacket's reg utility to retrieve the hostname of the box at 10.0.0.7 (WS02) via the compromised (CS beacon) box 10.0.0.2 (WS01):
The below shows traffic captures that illustrate that the box 10.0.0.2 enumerates 10.0.0.7 using SMB traffic only:
Below further proves that the box 10.0.0.2 (WS01 which acted as proxy) did not generate any sysmon logs and the target box 10.0.0.7 (WS02) logged a couple of events, that most likely would not attract much attention from the blue teams:
Note how only the SMB traffic between the compromised system and the DC is generated, but no new processes are spawned by the infected dllhost
process:
IP
What's behind
10.0.0.5
attacker with kali and rpcclient
10.0.0.2
compromised Windows system WS01
10.0.0.6
Windows DC DC01
to be interrogated by 10.0.0.5 via 10.0.0.2
10.0.0.7
Windows box WS02
to be interrogated by 10.0.0.5 via 10.0.0.2