nmap in Cygwin - seamlessly
WSL2 works with Nmap directly and is generally recommended instead of Cygwin. For those who do need Cygwin, it’s possible to use Nmap from Cygwin, silently calling Windows Nmap.
Install by download nmap.
Install nmap “self-installer” .exe
. When asked, also install Npcap.
Cygwin: add to ~/.bash_profile
the following. Note the \
and \(
are vital for Cygwin shell to interpret the command correctly.
alias nmap="/cygdrive/c/Program\ Files\ \(x86\)/Nmap/nmap.exe"
Open a new Cygwin window to start using nmap
Test nmap in Cygwin:
nmap 8.8.8.8
results in
Starting Nmap ( https://nmap.org )
Nmap scan report for 8.8.8.8
Host is up (0.0092s latency).
Not shown: 998 filtered ports
PORT STATE SERVICE
53/tcp open domain
443/tcp open https
Nmap done: 1 IP address (1 host up) scanned in 7.41 seconds
Troubleshooting:
- errors about interface → try running Cygwin as Administrator (right click on Cygwin icon).
- find interface names available to nmap
nmap --iflist
Notes:
- to find servers with a particular port open on a subnet, try my Python findssh program that scans for servers without nmap.
- If you don’t install Npcap when asked in the
nmap
installer,nmap
does not work. Nmap claims no host existed at a known working IP address.