Table of Contents

NMAP

NMAP is a command that is used to identify servers/computers/devices on the network

1.0 List down all connected devices/computers

nmap -sn -n 192.168.0.*

2.0 list down open ports for a particular device

to check for 1000 ports

nmap -n 192.168.0.1

to check for 100 ports

nmap -Fn 192.168.0.1

3.0 To check further details about a particular port

nmap -p 80 -n 192.168.0.1