Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
March 29, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 655
Members: 0
Total: 655
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Tools -> How to Start Your Own StresserBooter (NOOB FRIENDLY)
Post new topic  Reply to topic View previous topic :: View next topic 
How to Start Your Own StresserBooter (NOOB FRIENDLY)
PostPosted: Sun Jun 16, 2013 5:42 am Reply with quote
mrcr4cker
Advanced user
Advanced user
 
Joined: May 01, 2013
Posts: 68








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.



1. Introduction (Sector 1)
2. Uploading Your Files (Sector 1)
3. Uploading and Configuring MySQL Databases (Sector 1)
4. Mandatory File Edits (Sector 1)
5. Configuring PhpMyAdmin (Sector 2)
6. Accounts (Sector 3)
7. Creating An Account (Sector 3)
8. Activating Your Account and Making Yourself an Administrator (Sector 3
9. Accessing the Administrator Control Panel (Sector 3)
10. Sells/APi's (Sector 4)




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.



JeeJee Power v1.0 Source:

http://www.mediafire.com/?pbe1debx2hd8qg7

Shell Checker:

https://www.box.com/s/odng88j3uw03glnyjh9i
http://ge.tt/3pPdKLj/v/11
http://rghost.net/46733802

[size=large]Introduction (Sector 1):[/size]

Note: Please note I have spoilered image to have bandwidth. Click view spoiler to view tutorial related images! Thank you. -Natha.

Welcome to Sector One of this tutorial. In this stage I will be teaching you the following:

  • How to setup your hosting.
  • How to upload and configure your stresser.


[size=large]Uploading Your Files (Sector 1):[/size]

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.

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.

To upload your files download filezilla at http://www.filezilla-project.org/ or use the file manager in your hosting's cPanel.

[size=large]Uploading and Configuring MySQL Databases (Sector 1):[/size]

Once you have your files uploaded. Go into your cPanel and create a MySQL database.

The majority of hosts, if not all will all come with MySQL installed.

Create your database. Remember the information used.

After your database has been created, we now want to edit three files. The three files are below:

[size=large]Mandatory File Edits (Sector 1):[/size]

We need to edit the files so our stresser can connect to the MySQL Database.

  • dbc.php
  • shellcounter.php
  • includes/ezSQL.php ( line 44, 71 and 101 )


dbc.php:

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.

[php]define ("DB_HOST", "mysql9.000webhost.com"); // set database host
define ("DB_USER", "a9162705_xx"); // set database user
define ("DB_PASS","Example1"); // set database password
define ("DB_NAME","a9162705_xx"); // set database name[/php]

Line 1: This is your database host.
Line 2: This is your database username.
Line 3: This is your database password.
Line 4: This is your database name.

If you haven't caught on by now. You need to input all of your MySQL information into those fields.

shellcounter.php:

The top of shellcounter.php will look like this:

[php]/* START OF CONFIGURATION SECTION */
$mysql_username = 'a9162705_xx'; // MySQL User Name
$mysql_password = 'Example1'; // MySQL Password
$mysql_hostname = 'mysql9.000webhost.com'; // MySQL Host Name
$mysql_hostport = 3306; // MySQL Host Port
$mysql_database = 'a9162705_xx'; // MySQL Database
$mysql_shelltbl = 'shellpool'; // MySQL Table Name (will be created if it does not exist)
$mysql_stengine = 'MyISAM'; // Preferred MySQL Storage Engine (MyISAM, MRG_MyISAM or InnoDB)[/php]

You will only need to edit the following with your MySQL Database Information:

[php]$mysql_username = 'a9162705_xx'; // MySQL User Name
mysql_password = 'Example1'; // MySQL Password
$mysql_hostname = 'mysql9.000webhost.com'; // MySQL Host Name
$mysql_database = 'a9162705_xx'; // MySQL Database[/php]

LEAVE everything else as is. Ports for example, leave them. They're fine.

ezSQL.php:

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.

Line 44:

Edit the obvious fields. I've inputted my database information.

[php]function ezSQL_mysql($dbuser='a9162705_xx', $dbpassword='Example1', $dbname='a9162705_xx', $dbhost='mysql9.000webhost.com')[/php]

Line 71:

Once again, edit the obvious fields. Look at the $values. It explains it clearly. $dbuser is the database username, and so on. Common sense.

[php] function connect($dbuser='a9162705_xx', $dbpassword='Example1', $dbhost='mysql9.000webhost.com')[/php]

Line 101:

Finally for a short one, line 101, just the database name.

[php] function select($dbname='a9162705_xx')[/php]

[size=large]Configuring PhpMyAdmin (Sector 2):[/size]

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.

Your cPanel should have PhpMyAdmin.

Locate the import button located at the top of PhpMyAdmin:

[spoiler][/spoiler]

Once you're in the import menu. Upload the provided .SQL file in the JeeJee Power folder. Like below:

[spoiler][/spoiler]

Then after click "Go" like provided below.

[spoiler][/spoiler]

Then you should get a success message, and the databases should appear on the side.

[size=large]Accounts (Sector 3):[/size]

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.

You will want to locate YOURDOMAIN.com/login.php (Of course replace YOURDOMAIN with your actual domain, as this is just an example).

[size=large]Creating An Account (Sector 3):[/size]

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).

[spoiler][/spoiler]

Click the register button, and register your account.

[spoiler][/spoiler]

Now your account is registered! Congratulations.

We're not done yet!

[spoiler][/spoiler]

[size=large]Activating Your Account and Making Yourself an Administrator (Sector 3):[/size]

Now go back to PhpMyAdmin.

Click the table called 'Users' on the side and then click Browse button at the top, just like when you clicked import.

[spoiler][/spoiler]

You should see your own profile:

[spoiler][img]http://puu.sh/1VKOC[/img][/spoiler]

You want to click edit, which is of course the little pencil button.

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.

Congratulations, your account is now active, and you're an administrator!

[spoiler][/spoiler]

[size=large]Accessing the Administrator Control Panel (Sector 3):[/size]

To go to the administrator's control panel go to YOURDOMAIN.com/admin.php (Obviously replace YOURDOMAIN.com with your own once again).

From here you can change your booters name, add shells, post new bulletins, read logs, create users, active users and more!

[size=large]Shells/APi's (Sector 4):[/size]

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.

You need shells or APi's for your booter/stresser to work. Here are your options:

  • Buy shells from people in the HF marketplace.
  • Get your own from pastebin and use a shell checker provided in the downloads.
  • Request free shells, or look for giveaways on HF.

[/quote]
View user's profile Send private message
How to Start Your Own StresserBooter (NOOB FRIENDLY)
  www.waraxe.us Forum Index -> Tools
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.152 Seconds