123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #!/bin/bash
- red='\e[1;31m'
- green='\e[0;32m'
- NC='\e[0m'
- MYIP=$(wget -qO- ipinfo.io/ip);
- IZIN=$( curl https://raw.githubusercontent.com/SSHSEDANG4/kunci_script/main/iptext.sh | grep $MYIP )
- if [ $MYIP = $IZIN ]; then
- clear
- echo -e "${green} Please Wait, Proses...${NC}"
- sleep 5
- else
- echo "User premium Only ,Sila Contact Admin Bot😘"
- exit 0
- fi
- clear
- echo Installing Websocket-SSH AUTOSCRIPT BY BOTVPN
- sleep 1
- echo Cek Hak Akses...
- sleep 0.5
- cd
- cd /etc/systemd/system/
- #Install system auto run
- wget -O /etc/systemd/system/ws-ssh.service https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-ssh.service && chmod +x /etc/systemd/system/ws-ssh.service
- wget -O /etc/systemd/system/ws-dropbear.service https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-dropbear.service && chmod +x /etc/systemd/system/ws-dropbear.service
- wget -O /etc/systemd/system/ws-ovpn.service https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-ovpn.service && chmod +x /etc/systemd/system/ws-ovpn.service
- wget -O /etc/systemd/system/ws-stunnel.service https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-stunnel.service && chmod +x /etc/systemd/system/ws-stunnel.service
- #Install Websocket-SSH
- wget -O /usr/local/bin/ws-ssh https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-openssh.py && chmod +x /usr/local/bin/ws-ssh
- wget -O /usr/local/bin/ws-dropbear https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-dropbear.py && chmod +x /usr/local/bin/ws-dropbear
- wget -O /usr/local/bin/ws-ovpn https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-ovpn.py && chmod +x /usr/local/bin/ws-ovpn
- wget -O /usr/local/bin/ws-stunnel https://raw.githubusercontent.com/alifnurmareta/new_script/main/websocket/ws-tls.py && chmod +x /usr/local/bin/ws-stunnel
- #Enable, Start & Restart ws-ssh service
- systemctl enable ws-ssh.service
- systemctl start ws-ssh.service
- systemctl restart ws-ssh.service
- #Enable, Start & Restart ws-dropbear service
- systemctl enable ws-dropbear.service
- systemctl start ws-dropbear.service
- systemctl restart ws-dropbear.service
- #Enable, Start & Restart ws-ovpn service
- systemctl enable ws-ovpn.service
- systemctl start ws-ovpn.service
- systemctl restart ws-ovpn.service
- #Enable, Start & Restart ws-stunnel service
- systemctl enable ws-stunnel.service
- systemctl start ws-stunnel.service
- systemctl restart ws-stunnel.service
|