Netcat Chat

From XPUB & Lens-Based wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

To make simple shell chat you can use netcat:

  • On machine A start netcat and tell it to listen a free unblocked port number:
nc -l 12345
  • On machine B, start a netcat client and tell it to connect to machine B's IP:
nc 192.168.1.33 12345
  • Start chatting!