Downloads are from a bit cryptic page [WayBack] Download the Free Nmap Security Scanner for Linux/Mac/Windows via [WayBack] Windows | Nmap Network Scanning.
An alternative is to go to [WayBack] nmap.org/dist, then search for the bottom most files having .exe
or .zip
extensions.
It is much more modern than netcat (see some links on that below) and has elaborate documentation:
- [WayBack] Ncat – Netcat for the 21st Century
- [WayBack] Ncat Users’ Guide
- [WayBack] Neat Tricks | Ncat Users’ Guide
Unwrap SSL
Suppose you need to connect to an IMAP server that requires SSL, but your mail reader doesn’t support SSL. Ncat can act as the encrypted bridge to connect the client and server. You will connect the mail client to a local port and Ncat will forward the traffic, encrypted, to the server. Here’s how to connect IMAP (port 143) on the local host to IMAP over SSL (port 993) on
imap.example.com
.ncat -l localhost 143 –sh-exec “ncat –ssl imap.example.com 993”
- [WayBack] Neat Tricks | Ncat Users’ Guide
- [WayBack] Chapter 17. Ncat Reference Guide | Nmap Network Scanning
- [WayBack] Examples | Nmap Network ScanningCreate an HTTP proxy server on localhost port 8888.ncat -l –proxy-type http localhost 8888
As a comparison some netcat links:
- [WayBack] How To Use Netcat to Establish and Test TCP and UDP Connections on a VPS | DigitalOcean
- [WayBack] How to simulate a TCP/UDP client using Netcat – Ubidots Blog
- Netcat – Wikipedia
–jeroen