You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
nc <user1_ip> <port> | openssl enc -aes-256-cbc -pass pass:<user1_passphrase> -d | while read -r line ; do
echo "User1: $line"
done
About
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)