I am scanning a network looking for storage devices with nmap. Any ideas on which I should base my search?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Are you looking for any device or computer that has file sharing (smb) enabled? The microsoft file and printer sharing protocol needs port 445 to be open. This command lists anything on the network with port 445 open (you'll have to change the IP range for your network).

nmap -open -p 445 192.168.10.*

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.