mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 23:21:13 +01:00
459 lines
16 KiB
Bash
Executable file
459 lines
16 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# command info
|
|
if [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
|
echo "small config script to set a passwords A,B,C & D"
|
|
echo "blitz.setpassword.sh a [?newpassword] "
|
|
echo "blitz.setpassword.sh b [?newpassword] "
|
|
echo "blitz.setpassword.sh c [?oldpassword] [?newpassword] "
|
|
echo "or just as a password enter dialog (result as file)"
|
|
echo "blitz.setpassword.sh [x] [text] [result-file] [?empty-allowed]"
|
|
exit 1
|
|
fi
|
|
|
|
# check if sudo
|
|
if [ "$EUID" -ne 0 ]
|
|
then echo "Please run as root (with sudo)"
|
|
exit
|
|
fi
|
|
|
|
# tempfile
|
|
_temp=$(mktemp -p /dev/shm/)
|
|
|
|
# load raspiblitz config (if available)
|
|
source /home/admin/raspiblitz.info
|
|
source /mnt/hdd/raspiblitz.conf
|
|
if [ ${#network} -eq 0 ]; then
|
|
network="bitcoin"
|
|
fi
|
|
if [ ${#chain} -eq 0 ]; then
|
|
chain="main"
|
|
fi
|
|
|
|
# 1. parameter [?a|b|c]
|
|
abcd=$1
|
|
|
|
# run interactive if no further parameters
|
|
reboot=0;
|
|
OPTIONS=()
|
|
if [ ${#abcd} -eq 0 ]; then
|
|
reboot=1;
|
|
emptyAllowed=1
|
|
OPTIONS+=(A "Master User Password / SSH")
|
|
OPTIONS+=(B "RPC Password (blockchain/lnd)")
|
|
OPTIONS+=(C "LND Wallet Password")
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "RaspiBlitz" \
|
|
--title "Set Password" \
|
|
--menu "Which password to change?" \
|
|
11 50 7 \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
clear
|
|
case $CHOICE in
|
|
A)
|
|
abcd='a';
|
|
;;
|
|
B)
|
|
abcd='b';
|
|
;;
|
|
C)
|
|
abcd='c';
|
|
;;
|
|
D)
|
|
abcd='d';
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
############################
|
|
# PASSWORD A
|
|
if [ "${abcd}" = "a" ]; then
|
|
|
|
newPassword=$2
|
|
|
|
# if no password given by parameter - ask by dialog
|
|
if [ ${#newPassword} -eq 0 ]; then
|
|
clear
|
|
|
|
# ask user for new password A (first time)
|
|
password1=$(whiptail --passwordbox "\nSet new Admin/SSH Password A:\n(min 8chars, 1word, chars+number, no specials)" 10 52 "" --title "Password A" --backtitle "RaspiBlitz - Setup" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ]; then
|
|
if [ ${emptyAllowed} -eq 0 ]; then
|
|
echo "CANCEL not possible"
|
|
sleep 2
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# ask user for new password A (second time)
|
|
password2=$(whiptail --passwordbox "\nRe-Enter Password A:\n(This is new password to login per SSH)" 10 52 "" --title "Password A" --backtitle "RaspiBlitz - Setup" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ]; then
|
|
if [ ${emptyAllowed} -eq 0 ]; then
|
|
echo "CANCEL not possible"
|
|
sleep 2
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# check if passwords match
|
|
if [ "${password1}" != "${password2}" ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Passwords dont Match\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh a
|
|
exit 1
|
|
fi
|
|
|
|
# password zero
|
|
if [ ${#password1} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Password cannot be empty\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh a
|
|
exit 1
|
|
fi
|
|
|
|
# check that password does not contain bad characters
|
|
clearedResult=$(echo "${password1}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
|
if [ ${#clearedResult} != ${#password1} ] || [ ${#clearedResult} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Contains bad characters (spaces, special chars)\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh a
|
|
exit 1
|
|
fi
|
|
|
|
# password longer than 8
|
|
if [ ${#password1} -lt 8 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Password length under 8\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh a
|
|
exit 1
|
|
fi
|
|
|
|
# use entred password now as parameter
|
|
newPassword="${password1}"
|
|
|
|
fi
|
|
|
|
# change user passwords and then change hostname
|
|
echo "pi:$newPassword" | sudo chpasswd
|
|
echo "root:$newPassword" | sudo chpasswd
|
|
echo "bitcoin:$newPassword" | sudo chpasswd
|
|
echo "admin:$newPassword" | sudo chpasswd
|
|
sleep 1
|
|
|
|
echo ""
|
|
echo "OK - password A changed for user pi, root, admin & bitcoin"
|
|
|
|
############################
|
|
# PASSWORD B
|
|
elif [ "${abcd}" = "b" ]; then
|
|
|
|
newPassword=$2
|
|
|
|
# if no password given by parameter - ask by dialog
|
|
if [ ${#newPassword} -eq 0 ]; then
|
|
clear
|
|
|
|
# ask user for new password B (first time)
|
|
password1=$(whiptail --passwordbox "\nPlease enter your new Password B:\n(min 8chars, 1word, chars+number, no specials)" 10 52 "" --title "Password B" --backtitle "RaspiBlitz - Setup" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ]; then
|
|
if [ "${emptyAllowed}" == "0" ]; then
|
|
echo "CANCEL not possible"
|
|
sleep 2
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# ask user for new password B (second time)
|
|
password2=$(whiptail --passwordbox "\nRe-Enter Password B:\n" 10 52 "" --title "Password B" --backtitle "RaspiBlitz - Setup" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ]; then
|
|
if [ "${emptyAllowed}" == "0" ]; then
|
|
echo "CANCEL not possible"
|
|
sleep 2
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# check if passwords match
|
|
if [ "${password1}" != "${password2}" ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Passwords dont Match\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh b
|
|
exit 1
|
|
fi
|
|
|
|
# password zero
|
|
if [ ${#password1} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Password cannot be empty\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh b
|
|
exit 1
|
|
fi
|
|
|
|
# check that password does not contain bad characters
|
|
clearedResult=$(echo "${password1}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
|
if [ ${#clearedResult} != ${#password1} ] || [ ${#clearedResult} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Contains bad characters (spaces, special chars)\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh b
|
|
exit 1
|
|
fi
|
|
|
|
# password longer than 8
|
|
if [ ${#password1} -lt 8 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Password length under 8\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh b
|
|
exit 1
|
|
fi
|
|
|
|
# use entred password now as parameter
|
|
newPassword="${password1}"
|
|
fi
|
|
|
|
# change in assets (just in case this is used on setup)
|
|
sed -i "s/^rpcpassword=.*/rpcpassword=${newPassword}/g" /home/admin/assets/${network}.conf 2>/dev/null
|
|
|
|
# change in real configs
|
|
sed -i "s/^rpcpassword=.*/rpcpassword=${newPassword}/g" /mnt/hdd/${network}/${network}.conf 2>/dev/null
|
|
sed -i "s/^rpcpassword=.*/rpcpassword=${newPassword}/g" /home/admin/.${network}/${network}.conf 2>/dev/null
|
|
|
|
# blitzweb
|
|
if ! [ -f /etc/nginx/.htpasswd ]; then
|
|
echo "${newPassword}" | sudo htpasswd -ci /etc/nginx/.htpasswd admin
|
|
else
|
|
echo "${newPassword}" | sudo htpasswd -i /etc/nginx/.htpasswd admin
|
|
fi
|
|
|
|
# RTL - keep settings from current RTL-Config.json
|
|
if [ "${rtlWebinterface}" == "on" ]; then
|
|
echo "# changing RTL password"
|
|
cp /home/rtl/RTL/RTL-Config.json /home/rtl/RTL/backup-RTL-Config.json
|
|
# remove hashed old password
|
|
#sed -i "/\b\(multiPassHashed\)\b/d" ./RTL-Config.json
|
|
# set new password
|
|
cp /home/rtl/RTL/RTL-Config.json /home/admin/RTL-Config.json
|
|
chown admin:admin /home/admin/RTL-Config.json
|
|
chmod 600 /home/admin/RTL-Config.json || exit 1
|
|
node > /home/admin/RTL-Config.json <<EOF
|
|
//Read data
|
|
var data = require('/home/rtl/RTL/backup-RTL-Config.json');
|
|
//Manipulate data
|
|
data.multiPassHashed = null;
|
|
data.multiPass = '$newPassword';
|
|
//Output data
|
|
console.log(JSON.stringify(data, null, 2));
|
|
EOF
|
|
rm -f /home/rtl/RTL/backup-RTL-Config.json
|
|
rm -f /home/rtl/RTL/RTL-Config.json
|
|
mv /home/admin/RTL-Config.json /home/rtl/RTL/
|
|
chown rtl:rtl /home/rtl/RTL/RTL-Config.json
|
|
fi
|
|
|
|
# electrs
|
|
if [ "${ElectRS}" == "on" ]; then
|
|
echo "# changing the RPC password for ELECTRS"
|
|
RPC_USER=$(cat /mnt/hdd/bitcoin/bitcoin.conf | grep rpcuser | cut -c 9-)
|
|
sudo sed -i "s/^cookie = \"$RPC_USER.*\"/cookie = \"$RPC_USER:${newPassword}\"/g" /home/electrs/.electrs/config.toml
|
|
fi
|
|
|
|
# BTC-RPC-Explorer
|
|
if [ "${BTCRPCexplorer}" = "on" ]; then
|
|
echo "# changing the RPC password for BTCRPCEXPLORER"
|
|
sudo sed -i "s/^BTCEXP_BITCOIND_PASS=.*/BTCEXP_BITCOIND_PASS=${newPassword}/g" /home/btcrpcexplorer/.config/btc-rpc-explorer.env
|
|
sudo sed -i "s/^BTCEXP_BASIC_AUTH_PASSWORD=.*/BTCEXP_BASIC_AUTH_PASSWORD=${newPassword}/g" /home/btcrpcexplorer/.config/btc-rpc-explorer.env
|
|
fi
|
|
|
|
# BTCPayServer
|
|
if [ "${BTCPayServer}" == "on" ]; then
|
|
echo "# changing the RPC password for BTCPAYSERVER"
|
|
sudo sed -i "s/^btc.rpc.password=.*/btc.rpc.password=${newPassword}/g" /home/btcpay/.nbxplorer/Main/settings.config
|
|
fi
|
|
|
|
# JoinMarket
|
|
if [ "${joinmarket}" == "on" ]; then
|
|
echo "# changing the RPC password for JOINMARKET"
|
|
sudo sed -i "s/^rpc_password =.*/rpc_password = ${newPassword}/g" /home/joinmarket/.joinmarket/joinmarket.cfg
|
|
echo "# changing the password for the 'joinmarket' user"
|
|
echo "joinmarket:${newPassword}" | sudo chpasswd
|
|
fi
|
|
|
|
# ThunderHub
|
|
if [ "${thunderhub}" == "on" ]; then
|
|
echo "# changing the password for ThunderHub"
|
|
sudo sed -i "s/^masterPassword:.*/masterPassword: '${newPassword}'/g" /mnt/hdd/app-data/thunderhub/thubConfig.yaml
|
|
fi
|
|
|
|
# LIT
|
|
if [ "${lit}" == "on" ]; then
|
|
echo "# changing the password for LIT"
|
|
sudo sed -i "s/^uipassword=.*/uipassword=${newPassword}/g" /mnt/hdd/app-data/.lit/lit.conf
|
|
sudo sed -i "s/^faraday.bitcoin.password=.*/faraday.bitcoin.password=${newPassword}/g" /mnt/hdd/app-data/.lit/lit.conf
|
|
fi
|
|
|
|
echo "# OK -> RPC Password B changed"
|
|
echo "# Reboot is needed"
|
|
|
|
############################
|
|
# PASSWORD C
|
|
elif [ "${abcd}" = "c" ]; then
|
|
|
|
oldPassword=$2
|
|
newPassword=$3
|
|
|
|
if [ "${oldPassword}" == "" ]; then
|
|
# ask user for old password c
|
|
clear
|
|
oldPassword=$(whiptail --passwordbox "\nEnter old Password C:\n" 10 52 "" --title "Old Password C" --backtitle "RaspiBlitz - Passwords" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ] || [ "${oldPassword}" == "" ]; then
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c
|
|
fi
|
|
echo "OK ... processing"
|
|
fi
|
|
|
|
if [ "${newPassword}" == "" ]; then
|
|
clear
|
|
|
|
# ask user for new password c
|
|
newPassword=$(whiptail --passwordbox "\nEnter new Password C:\n" 10 52 "" --title "New Password C" --backtitle "RaspiBlitz - Passwords" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ] || [ "${newPassword}" == "" ]; then
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c ${oldPassword}
|
|
exit 0
|
|
fi
|
|
# check new password does not contain bad characters
|
|
clearedResult=$(echo "${newPassword}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
|
if [ ${#clearedResult} != ${#newPassword} ] || [ ${#clearedResult} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Contains bad characters (spaces, special chars)" 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c ${oldPassword}
|
|
exit 0
|
|
fi
|
|
# check new password longer than 8
|
|
if [ ${#newPassword} -lt 8 ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Password length under 8" 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c ${oldPassword}
|
|
exit 1
|
|
fi
|
|
|
|
# ask user to retype new password c
|
|
newPassword2=$(whiptail --passwordbox "\nEnter again new Password C:\n" 10 52 "" --title "New Password C (repeat)" --backtitle "RaspiBlitz - Passwords" 3>&1 1>&2 2>&3)
|
|
if [ $? -eq 1 ] || [ "${newPassword}" == "" ]; then
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c ${oldPassword}
|
|
exit 0
|
|
fi
|
|
echo "OK ... processing"
|
|
# check if passwords match
|
|
if [ "${newPassword}" != "${newPassword2}" ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Passwords dont Match" 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh c ${oldPassword}
|
|
exit 0
|
|
fi
|
|
echo "OK ... processing"
|
|
fi
|
|
|
|
#echo "oldPassword: ${oldPassword}"
|
|
#echo "newPassword: ${newPassword}"
|
|
|
|
echo "# Make sure Auto-Unlocks off"
|
|
sudo /home/admin/config.scripts/lnd.autounlock.sh off
|
|
|
|
echo "LND needs to be restarted to lock wallet first .. (please wait)"
|
|
sudo systemctl restart lnd
|
|
sleep 2
|
|
|
|
err=""
|
|
source <(sudo /home/admin/config.scripts/lnd.initwallet.py change-password $oldPassword $newPassword)
|
|
if [ "${err}" != "" ]; then
|
|
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Was not able to change password\n\n${err}\n${errMore}" 10 52
|
|
clear
|
|
echo "# FAIL: Was not able to change password"
|
|
exit 1
|
|
fi
|
|
|
|
# old manual way
|
|
# clear
|
|
# echo ""
|
|
# echo "****************************************************************************"
|
|
# echo "Change LND Wallet Password --> lncli --chain=${network} --network=${chain}net changepassword"
|
|
# echo "****************************************************************************"
|
|
# echo "This is your Password C on the RaspiBlitz to unlock your LND wallet."
|
|
# echo "If you had Auto-Unlock active - you need to re-activate after this."
|
|
# echo "****************************************************************************"
|
|
# sleep 6
|
|
# let LND-CLI handle the password change
|
|
# sudo -u bitcoin lncli --chain=${network} --network=${chain}net changepassword
|
|
|
|
# final user output
|
|
echo ""
|
|
echo "OK"
|
|
|
|
############################
|
|
# PASSWORD X
|
|
elif [ "${abcd}" = "x" ]; then
|
|
|
|
emptyAllowed=0
|
|
if [ "$4" == "empty-allowed" ]; then
|
|
emptyAllowed=1
|
|
fi
|
|
|
|
# second parameter is the flexible text
|
|
text=$2
|
|
resultFile=$3
|
|
shred -u $3 2>/dev/null
|
|
|
|
# ask user for new password (first time)
|
|
password1=$(whiptail --passwordbox "\n${text}:\n(min 8chars, 1word, chars+number, no specials)" 10 52 "" --backtitle "RaspiBlitz" 3>&1 1>&2 2>&3)
|
|
|
|
# ask user for new password A (second time)
|
|
password2=""
|
|
if [ ${#password1} -gt 0 ]; then
|
|
password2=$(whiptail --passwordbox "\nRe-Enter the Password:\n(to test if typed in correctly)" 10 52 "" --backtitle "RaspiBlitz" 3>&1 1>&2 2>&3)
|
|
fi
|
|
|
|
# check if passwords match
|
|
if [ "${password1}" != "${password2}" ]; then
|
|
dialog --backtitle "RaspiBlitz" --msgbox "FAIL -> Passwords dont Match\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh x "$2" "$3" "$4"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ${emptyAllowed} -eq 0 ]; then
|
|
|
|
# password zero
|
|
if [ ${#password1} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz" --msgbox "FAIL -> Password cannot be empty\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh x "$2" "$3" "$4"
|
|
exit 1
|
|
fi
|
|
|
|
# check that password does not contain bad characters
|
|
clearedResult=$(echo "${password1}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
|
if [ ${#clearedResult} != ${#password1} ] || [ ${#clearedResult} -eq 0 ]; then
|
|
dialog --backtitle "RaspiBlitz" --msgbox "FAIL -> Contains bad characters (spaces, special chars)\nPlease try again ..." 6 62
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh x "$2" "$3" "$4"
|
|
exit 1
|
|
fi
|
|
|
|
# password longer than 8
|
|
if [ ${#password1} -lt 8 ]; then
|
|
dialog --backtitle "RaspiBlitz" --msgbox "FAIL -> Password length under 8\nPlease try again ..." 6 52
|
|
sudo /home/admin/config.scripts/blitz.setpassword.sh x "$2" "$3" "$4"
|
|
exit 1
|
|
fi
|
|
|
|
fi
|
|
|
|
# store result is file
|
|
echo "${password1}" > ${resultFile}
|
|
|
|
# everything else
|
|
else
|
|
echo "FAIL: there is no password '${abcd}' (reminder: use lower case)"
|
|
exit 1
|
|
fi
|
|
|
|
# when started with menu ... reboot when done
|
|
if [ "${reboot}" == "1" ]; then
|
|
echo "Now rebooting to activate changes ..."
|
|
sudo /home/admin/config.scripts/blitz.shutdown.sh reboot
|
|
else
|
|
echo "..."
|
|
fi
|