Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- A response to the following:
- https://twitter.com/nixcraft/status/637885429010706432
- Wherein it was suggested:
- Poor mans chat server
- Box1$ nc -lp 4242
- Box2$ nc box1 4242
- Now start typing on either machine. #unix #linux #OSX #freebsd
- My answer: (too long for a tweet)
- Poor [persons] *encrypted* chat server
- Box1$ openssl req -nodes -new -x509 -batch -out server.pem -keyout server.pem && openssl s_server -accept 4242
- Box2$ openssl s_client -host box1 -port 4242
- Now start typing on either machine. #unix #linux #OSX #freebsd
- Here's a script to make it easier:
- http://pastebin.com/X5fFWLdE
- Poor [persons] *encrypted* chat server
- Box1$ stalk -s
- Box2$ stalk box1
- Now start typing on either machine. #unix #Linux #OSX #freebsd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement