Sua captura de tela mostra portas que estão abertas, não as fechadas.
Na saída do comando, nmap
informa All 1000 scanned ports on localhost (127.0.0.1) are closed
, portanto, não há portas abertas para mostrar, como neste exemplo:
Starting Nmap 7.01 ( https://nmap.org ) at 2017-08-22 15:02 CEST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000028s latency).
Other addresses for localhost (not scanned): ::1
All 1000 scanned ports on localhost (127.0.0.1) are closed
Nmap done: 1 IP address (1 host up) scanned in 0.02 seconds
Como sugerido por sark , você pode verificar se nmap
está funcionando corretamente abrindo uma porta tcp, por exemplo, usando nc -l 1234
em outro console.
O resultado esperado será:
Starting Nmap 7.01 ( https://nmap.org ) at 2017-08-22 14:42 CEST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000041s latency).
Other addresses for localhost (not scanned): ::1
Not shown: 999 closed ports
PORT STATE SERVICE
1234/tcp open hotline
Nmap done: 1 IP address (1 host up) scanned in 0.03 seconds