/Chat

Ment to be a encripted chat thing that lets one user make a encripted port on their IP alowing the other user to connect to it via a password. (NOT WORKING ATM)

Primary LanguageShell

chmod +x g.sh

./script.sh <port>

user 2 join:

nc <user1_ip> <port> | openssl enc -aes-256-cbc -pass pass:<user1_passphrase> -d | while read -r line ; do
    echo "User1: $line"
done