Advertisement
Guest User

Untitled

a guest
Jun 12th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.25 KB | None | 0 0
  1.  
  2. [Image: jIkTP3jGqIFME.png]
  3.  
  4. This tutorial will teach you how to maintain and create your own stresser, otherwise known as a booter. I have another tutorial on this. This tutorial is updated, more detailed, and gives an even better source. Please leave feedback, or questions, or even if you think I should add something in, please don't hesitate.
  5.  
  6. [Image: jW2mxjejiQxR6.png]
  7.  
  8. 1. Introduction (Sector 1)
  9. 2. Uploading Your Files (Sector 1)
  10. 3. Uploading and Configuring MySQL Databases (Sector 1)
  11. 4. Mandatory File Edits (Sector 1)
  12. 5. Configuring PhpMyAdmin (Sector 2)
  13. 6. Accounts (Sector 3)
  14. 7. Creating An Account (Sector 3)
  15. 8. Activating Your Account and Making Yourself an Administrator (Sector 3
  16. 9. Accessing the Administrator Control Panel (Sector 3)
  17. 10. Sells/APi's (Sector 4)
  18.  
  19. [Image: j3Kqy0dUN0MNg.png]
  20.  
  21. So. You may be this far, but you may not know what a stresser, or "booter" even is. A stresser uses shells or api's to attack a certain location. These will send a certain amount of packets to the desired location, and if it sends enough packets it will force the server, or connection to flood, and simply crash. When a router, or connection/network crashes, that server cannot handle the amount of incoming packets.
  22.  
  23. [Image: jLVyWBEP1gdZK.png]
  24.  
  25. JeeJee Power v1.0 Source:
  26.  
  27. http://www.mediafire.com/?pbe1debx2hd8qg7
  28.  
  29. Shell Checker:
  30.  
  31. http://www.mediafire.com/?du52p5rlfdm5ura
  32.  
  33. Introduction (Sector 1):
  34.  
  35. Note: Please note I have spoilered image to have bandwidth. Click view spoiler to view tutorial related images! Thank you. -Natha.
  36.  
  37. Welcome to Sector One of this tutorial. In this stage I will be teaching you the following:
  38. How to setup your hosting.
  39. How to upload and configure your stresser.
  40.  
  41. Uploading Your Files (Sector 1):
  42.  
  43. 1. For tutorial purposes I'm simply going to use a hosting website called http://000webhosting.com/ I would not advise using this website, you will not be able to send attacks. They have fsock disabled. As I said, this site is just for tutorial purposes. I would advise getting cheap hosting here at HackForums in the hosting marketplace.
  44.  
  45. Once you have your hosting, you will want to upload your files that you originally downloaded above. ONLY upload the files within the source folder included in the download. There is no point uploading the banner .PSD etc.
  46.  
  47. To upload your files download filezilla at http://www.filezilla-project.org/ or use the file manager in your hosting's cPanel.
  48.  
  49. Uploading and Configuring MySQL Databases (Sector 1):
  50.  
  51. Once you have your files uploaded. Go into your cPanel and create a MySQL database.
  52.  
  53. The majority of hosts, if not all will all come with MySQL installed.
  54.  
  55. Create your database. Remember the information used.
  56.  
  57. After your database has been created, we now want to edit three files. The three files are below:
  58.  
  59. Mandatory File Edits (Sector 1):
  60.  
  61. We need to edit the files so our stresser can connect to the MySQL Database.
  62. dbc.php
  63. shellcounter.php
  64. includes/ezSQL.php ( line 44, 71 and 101 )
  65.  
  66. dbc.php:
  67.  
  68. This is self explanatory. At the top you will see the lines below. The lines below explain exactly what to edit. Edit the information within the ' 's. Like I have done below.
  69.  
  70. PHP Code:
  71. define ("DB_HOST", "mysql9.000webhost.com"); // set database host
  72. define ("DB_USER", "a9162705_xx"); // set database user
  73. define ("DB_PASS","Example1"); // set database password
  74. define ("DB_NAME","a9162705_xx"); // set database name
  75.  
  76. Line 1: This is your database host.
  77. Line 2: This is your database username.
  78. Line 3: This is your database password.
  79. Line 4: This is your database name.
  80.  
  81. If you haven't caught on by now. You need to input all of your MySQL information into those fields.
  82.  
  83. shellcounter.php:
  84.  
  85. The top of shellcounter.php will look like this:
  86.  
  87. PHP Code:
  88. /* START OF CONFIGURATION SECTION */
  89. $mysql_username = 'a9162705_xx'; // MySQL User Name
  90. $mysql_password = 'Example1'; // MySQL Password
  91. $mysql_hostname = 'mysql9.000webhost.com'; // MySQL Host Name
  92. $mysql_hostport = 3306; // MySQL Host Port
  93. $mysql_database = 'a9162705_xx'; // MySQL Database
  94. $mysql_shelltbl = 'shellpool'; // MySQL Table Name (will be created if it does not exist)
  95. $mysql_stengine = 'MyISAM'; // Preferred MySQL Storage Engine (MyISAM, MRG_MyISAM or InnoDB)
  96.  
  97. You will only need to edit the following with your MySQL Database Information:
  98.  
  99. PHP Code:
  100. $mysql_username = 'a9162705_xx'; // MySQL User Name
  101. mysql_password = 'Example1'; // MySQL Password
  102. $mysql_hostname = 'mysql9.000webhost.com'; // MySQL Host Name
  103. $mysql_database = 'a9162705_xx'; // MySQL Database
  104.  
  105. LEAVE everything else as is. Ports for example, leave them. They're fine.
  106.  
  107. ezSQL.php:
  108.  
  109. I would recommend getting Notepad++. Download it at, http://notepad-plus-plus.org/ to navigate line numbers easier. Read above for the lines that need to be edited.
  110.  
  111. Line 44:
  112.  
  113. Edit the obvious fields. I've inputted my database information.
  114.  
  115. PHP Code:
  116. function ezSQL_mysql($dbuser='a9162705_xx', $dbpassword='Example1', $dbname='a9162705_xx', $dbhost='mysql9.000webhost.com')
  117.  
  118. Line 71:
  119.  
  120. Once again, edit the obvious fields. Look at the $values. It explains it clearly. $dbuser is the database username, and so on. Common sense.
  121.  
  122. PHP Code:
  123. function connect($dbuser='a9162705_xx', $dbpassword='Example1', $dbhost='mysql9.000webhost.com')
  124.  
  125. Line 101:
  126.  
  127. Finally for a short one, line 101, just the database name.
  128.  
  129. PHP Code:
  130. function select($dbname='a9162705_xx')
  131.  
  132. Configuring PhpMyAdmin (Sector 2):
  133.  
  134. Welcome to Sector 2 of this tutorial. This will teach you how to configure your PhpMyAdmin with your stresser source. Please don't over think this. It may seem overwhelming, but it's incredibly simple.
  135.  
  136. Your cPanel should have PhpMyAdmin.
  137.  
  138. Locate the import button located at the top of PhpMyAdmin:
  139.  
  140. Spoiler (Click to Hide)
  141. [Image: ibnSppRtGxLUlX.png]
  142.  
  143. Once you're in the import menu. Upload the provided .SQL file in the JeeJee Power folder. Like below:
  144.  
  145. Spoiler (Click to View)
  146.  
  147. Then after click "Go" like provided below.
  148.  
  149. Spoiler (Click to View)
  150.  
  151. Then you should get a success message, and the databases should appear on the side.
  152.  
  153. Accounts (Sector 3):
  154.  
  155. Welcome to Sector 3 of this tutorial! In this sector we will be learning how to register our account, activate it, and then proceed to give our self administrator rights, and access to the AdminCP.
  156.  
  157. You will want to locate YOURDOMAIN.com/login.php (Of course replace YOURDOMAIN with your actual domain, as this is just an example).
  158.  
  159. Creating An Account (Sector 3):
  160.  
  161. You will now be at the login page like below. (IF you get a MySQL error, you have input your MySQL details to the edited pages incorrectly).
  162.  
  163. Spoiler (Click to View)
  164.  
  165. Click the register button, and register your account.
  166.  
  167. Spoiler (Click to View)
  168.  
  169. Now your account is registered! Congratulations.
  170.  
  171. We're not done yet!
  172.  
  173. Spoiler (Click to View)
  174.  
  175. Activating Your Account and Making Yourself an Administrator (Sector 3):
  176.  
  177. Now go back to PhpMyAdmin.
  178.  
  179. Click the table called 'Users' on the side and then click Browse button at the top, just like when you clicked import.
  180.  
  181. Spoiler (Click to View)
  182.  
  183. You should see your own profile:
  184.  
  185. Spoiler (Click to View)
  186.  
  187. You want to click edit, which is of course the little pencil button.
  188.  
  189. You need to change the values. Change the user_level value to 5. This will make an you administrator. Then you want to change the approved value from 0 to 1 to approve your account.
  190.  
  191. Congratulations, your account is now active, and you're an administrator!
  192.  
  193. Spoiler (Click to View)
  194.  
  195. Accessing the Administrator Control Panel (Sector 3):
  196.  
  197. To go to the administrator's control panel go to YOURDOMAIN.com/admin.php (Obviously replace YOURDOMAIN.com with your own once again).
  198.  
  199. From here you can change your booters name, add shells, post new bulletins, read logs, create users, active users and more!
  200.  
  201. Shells/APi's (Sector 4):
  202.  
  203. Ok. So you're finished, you want to get going right? Right. Unfortunately, this is the hard part. Well, easy but then again frustrating and can be time consuming.
  204.  
  205. You need shells or APi's for your booter/stresser to work. Here are your options:
  206. Buy shells from people in the HF marketplace.
  207. Get your own from pastebin and use a shell checker provided in the downloads.
  208. Request free shells, or look for giveaways on HF.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement