NMAP
Start with nmap scan.
nmap [Target IP]
That didn't come back with any results as it is most likely blocking our ping probes. I tried forcing the nmap scan.
nmap -Pn [Target IP]

Now that I know some of the ports are open, I'll try to run a version and script scan on those ports.
nmap -Pn -sC -sV -p 21,22,139,445 [Target IP]

Good information on the FTP and SMB.

Last updated