Using nc.exe (NetCat) to send emails to secured SMTP server (TLS)

netcatsmtptls

I used to send emails to unsecured SMTP servers using nc.exe utility (Windows port of NetCat) and now I need to send the same emails to a secured SMTP server (TLS). What additional parameters do I need to specify in nc.exe or body of the email message to enable secure communication?

Best Answer

With netcat, it's more-or-less impossible*.

You need a utilty which supports tls/ssl - you can try with snetcat or any other netcat clones.

*you have to do a ssl handshake first, exchange keys, encrypt, send, and then decrypt recieved data

Related Topic