1
0
mirror of https://github.com/AAAAAEXQOSyIpN2JZ0ehUQ/SSHPLUS-MANAGER-FREE.git synced 2024-11-13 14:09:31 +00:00
SSHPLUS-MANAGER-FREE/Modulos/badvpn
AAAAAEXQOSyIpN2JZ0ehUQ 23eeb41a2e Update Script
2022-02-21 16:10:14 -03:00

94 lines
3.3 KiB
Bash

#!/bin/bash
clear
fun_bar () {
comando[0]="$1"
comando[1]="$2"
(
[[ -e $HOME/fim ]] && rm $HOME/fim
${comando[0]} -y > /dev/null 2>&1
${comando[1]} -y > /dev/null 2>&1
touch $HOME/fim
) > /dev/null 2>&1 &
tput civis
echo -ne "\033[1;33m["
while true; do
for((i=0; i<18; i++)); do
echo -ne "\033[1;31m#"
sleep 0.1s
done
[[ -e $HOME/fim ]] && rm $HOME/fim && break
echo -e "\033[1;33m]"
sleep 1s
tput cuu1
tput dl1
echo -ne "\033[1;33m["
done
echo -e "\033[1;33m]\033[1;37m -\033[1;32m OK !\033[1;37m"
tput cnorm
}
[[ $(awk -F" " '{print $2}' /usr/lib/licence) != "@CRAZY_VPN" ]] && exit 0
fun_udp1 () {
[[ -e "/bin/badvpn-udpgw" ]] && {
clear
echo -e "\033[1;32mINICIANDO O BADVPN... \033[0m\n"
fun_udpon () {
screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 1000 --max-connections-for-client 10
[[ $(grep -wc "udpvpn" /etc/autostart) = '0' ]] && {
echo -e "ps x | grep 'udpvpn' | grep -v 'grep' || screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 10000 --max-connections-for-client 10 --client-socket-sndbuf 10000" >> /etc/autostart
} || {
sed -i '/udpvpn/d' /etc/autostart
echo -e "ps x | grep 'udpvpn' | grep -v 'grep' || screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 10000 --max-connections-for-client 10 --client-socket-sndbuf 10000" >> /etc/autostart
}
sleep 1
}
fun_bar 'fun_udpon'
echo -e "\n \033[1;32mBADVPN ATIVO !\033[0m"
sleep 3
menu
} || {
clear
echo -e "\033[1;32mINSTALANDO O BADVPN !\033[0m\n"
inst_udp () {
cd $HOME
wget https://raw.githubusercontent.com/AAAAAEXQOSyIpN2JZ0ehUQ/SSHPLUS-MANAGER-FREE/master/Install/badvpn-udpgw -o /dev/null
mv -f $HOME/badvpn-udpgw /bin/badvpn-udpgw
chmod 777 /bin/badvpn-udpgw
}
fun_bar 'inst_udp'
echo -e "\n\033[1;32mINICIANDO O BADVPN... \033[0m\n"
fun_udpon2 () {
screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 1000 --max-connections-for-client 10
[[ $(grep -wc "udpvpn" /etc/autostart) = '0' ]] && {
echo -e "ps x | grep 'udpvpn' | grep -v 'grep' || screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 10000 --max-connections-for-client 10 --client-socket-sndbuf 10000" >> /etc/autostart
} || {
sed -i '/udpvpn/d' /etc/autostart
echo -e "ps x | grep 'udpvpn' | grep -v 'grep' || screen -dmS udpvpn /bin/badvpn-udpgw --listen-addr 127.0.0.1:7300 --max-clients 10000 --max-connections-for-client 10 --client-socket-sndbuf 10000" >> /etc/autostart
}
sleep 1
}
fun_bar 'fun_udpon2'
echo -e "\n\033[1;32mBADVPN ATIVO !\033[0m"
sleep 3
menu
}
}
fun_udp2 () {
clear
echo -e "\n\033[1;32mPARANDO O BADVPN...\033[0m\n"
fun_stopbad () {
sleep 1
screen -r -S "udpvpn" -X quit
screen -wipe 1>/dev/null 2>/dev/null
[[ $(grep -wc "udpvpn" /etc/autostart) != '0' ]] && {
sed -i '/udpvpn/d' /etc/autostart
}
sleep 1
}
fun_bar 'fun_stopbad'
echo -e "\n \033[1;31mBADVPN PARADO !\033[0m"
sleep 3
menu
}
[[ $(ps x | grep "udpvpn"|grep -v grep |wc -l) = '0' ]] && fun_udp1 || fun_udp2