Gentil et verbeux ! À partir des pages de manuel.
Port unique :
nc -zv 127.0.0.1 80
Ports multiples :
nc -zv 127.0.0.1 22 80 8080
Plage de ports :
nc -zv 127.0.0.1 20-30
Bash a pu accéder aux ports TCP et UDP pendant un certain temps. À partir de la page de manuel :
/dev/tcp/host/port
If host is a valid hostname or Internet address, and port is an integer port number
or service name, bash attempts to open a TCP connection to the corresponding socket.
/dev/udp/host/port
If host is a valid hostname or Internet address, and port is an integer port number
or service name, bash attempts to open a UDP connection to the corresponding socket.
Vous pouvez donc utiliser quelque chose comme ceci :
xenon-lornix:~> cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_6.2p2 Debian-6
^C pressed here
Taa Daa !
Netcat est un outil utile :
nc 127.0.0.1 123 &> /dev/null; echo $?
Affichera 0
si le port 123 est ouvert, et 1
s'il est fermé.