Start by pulling an NMAP on the Target

nmap -sC -sV 172.25.90.3

WIndows Goodness!

Untitled

Check for Null Authentication on Shared Folders

smbclient -L 172.25.90.3 -U ''

Untitled

Here we have a folder called ‘Shared_Documents’ that appears to be accessible.

mount -t cifs //172.25.90.3/Shared_Documents /mnt

Untitled

If you take a look in the /mnt folder, you’ll find a lot of files.

The GreenWolf NTLM Theft repo on GitHub has a Python program that will generate a number of different files designed to trick unsuspecting users into authenticating with attacker-controlled machine.

git clone <https://github.com/Greenwolf/ntlm_theft.git>
cd ntlm_theft

Untitled