mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-15 05:32:26 +01:00
albatross-themes apk-post-messages autossh bitcoin btrbk entr ffmpegthumbnailer firejail firetools fwsnort gnome-colors imapsync inetutils-syslogd inotify-tools-inc isync junit ktsuss letsencrypt-nosudo libmbim libndp libqmi libteam mini-sendmail modemmanager namecoin networkmanager nginx-naxsi numix-themes nxapi opencl-headers opencl-icd-loader opus-tools perl-authen-ntlm perl-bit-vector perl-data-uniqid perl-file-copy-recursive perl-getopt-argvfile perl-io-tee perl-iptables-chainmgr perl-iptables-parse perl-module-scandeps perl-par-dist perl-par-packer perl-par perl-uri-escape psad py-crcmod py-graphviz py-lz4 py-opencl py-opengl-accelerate runit secpwgen secure-delete socklog spacefm tinyssh udevil virt-viewer virtualbricks whois wrk xpra zram-init
36 lines
891 B
Bash
36 lines
891 B
Bash
#!/bin/sh
|
|
|
|
NORMAL="\033[1;0m"
|
|
STRONG="\033[1;1m"
|
|
GREEN="\033[1;32m"
|
|
|
|
config=$(grep -F 'config=' /etc/init.d/bitcoin |sed 's/config=//')
|
|
|
|
randgen() {
|
|
output=$(cat /dev/urandom | tr -dc '0-9a-zA-Z!@#$%^&*_+-' | head -c${1:-$1}) 2>/dev/null
|
|
echo $output
|
|
}
|
|
|
|
findRandomTcpPort(){
|
|
port=$(( 1024 + $(( $RANDOM % $(( 65534 - 1024 )) )) ))
|
|
while netstat -atn | grep -q :$port; do port=$(expr $port + 1); done; echo $port
|
|
}
|
|
|
|
GenPasswd(){
|
|
sed -i "/rpcuser=/ c \rpcuser=USER-"$(randgen 32)"" $config
|
|
sed -i "/rpcpassword=/ c \rpcpassword=PW-"$(randgen 64)"" $config
|
|
sed -i "/rpcport=/ c \rpcport="$(findRandomTcpPort)"" $config
|
|
print_green "Generated random user / password / port in:" " $config\n"
|
|
}
|
|
|
|
print_green() {
|
|
local prompt="${STRONG}$1${GREEN}$2${NORMAL}"
|
|
printf "${prompt}%s"
|
|
}
|
|
|
|
if grep -F "changeme" $config 1>/dev/null; then
|
|
GenPasswd
|
|
fi
|
|
|
|
exit 0
|