From cab10e1bf09705a0f309b93b5a8f937c6e81a122 Mon Sep 17 00:00:00 2001 From: just n Date: Mon, 26 Jan 2026 18:15:06 +0000 Subject: [PATCH] Add fix.sh --- fix.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 fix.sh diff --git a/fix.sh b/fix.sh new file mode 100644 index 0000000..7875335 --- /dev/null +++ b/fix.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +HOST="your soju bouncer" +PORT="6697" +NETWORK="network name" +NICK="bouncer nick" +BNC_PASS="bouncer pass" +NS_PASS="network pass" + +( + echo "PASS $BNC_PASS" + echo "NICK $NICK" + echo "USER ${NICK}/${NETWORK} 0 * :script" + sleep 2 + echo "PRIVMSG BouncerServ :sasl reset -network $NETWORK" + echo "PRIVMSG BouncerServ :network update $NETWORK" + sleep 3 + echo "PRIVMSG NickServ :IDENTIFY $NS_PASS" + sleep 5 + echo "QUIT" +) | openssl s_client -connect "${HOST}:${PORT}" -quiet \ No newline at end of file