python nmap
pip3 install python-nmap
GrizzlyBearBehindYou
pip3 install python-nmap
git clone https://github.com/nmap/nmap.git
./configure
make
make install
nmap -p $(tr '\n' , <ports.list)
nmap -sC -sV -v *ipadress*
-sC ->runns scripts
-sV ->checks versions
-v -> for version
heh my go-to nmap scan add -p to specify port
Nmap is used for scanning networks
nmap -p `cat ports.list` ...