12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #!/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;32mSTARTING 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 ACTIVE!\033[0m"
- sleep 3
- menu
- } || {
- clear
- echo -e "\033[1;32mINSTALLING BADVPN!\033[0m\n"
- inst_udp () {
- cd $HOME
- wget https://www.dropbox.com/s/tgkxdwb03r7w59r/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;32mSTARTING 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 ACTIVE!\033[0m"
- sleep 3
- menu
- }
- }
- fun_udp2 () {
- clear
- echo -e "\n\033[1;32mSTOPPING 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 STOPPED!\033[0m"
- sleep 3
- menu
- }
- [[ $(ps x | grep "udpvpn"|grep -v grep |wc -l) = '0' ]] && fun_udp1 || fun_udp2
|