vpsroot.sh 498 B

123456789101112131415161718
  1. #!/bin/bash
  2. # Mod By SL
  3. wget -qO- -O /etc/ssh/sshd_config https://raw.githubusercontent.com/fisabiliyusri/Mantap/main/sshd_config;
  4. systemctl restart sshd;
  5. clear;
  6. echo -e "Masukkan Password:";
  7. read -e pwe;
  8. usermod -p `perl -e "print crypt("$pwe","Q4")"` root;
  9. clear;
  10. printf "Mohon Simpan Informasi Akun VPS Ini
  11. ============================================
  12. Ip address = $(curl -Ls http://ipinfo.io/ip)
  13. Username = root
  14. Password = $pwe
  15. ============================================";
  16. echo "";
  17. exit;