![]() |
|
Tutorial [Tut]How to Code your Own UDP Flooder[Tut] - 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: Tutorial [Tut]How to Code your Own UDP Flooder[Tut] (/Thread-Tutorial-Tut-How-to-Code-your-Own-UDP-Flooder-Tut) Pages:
1
2
|
[Tut]How to Code your Own UDP Flooder[Tut] - Pidiot - 01-15-2014 Sup Guys Iam here to teach you how to Code a UDP Flooder In VB2010! So lets start and cut the bullshit ![]() 1.Open VB2010 2.Click on File&Chose new project name it what you want. 3.Now We need 2 TextBox ,2Labels,2 buttons,1WebBrowser. 4.Doubel Click In Form1 and Write this Code Code: WebBrowser1.Navigate("The Link of your UDP shell here")Code: WebBrowser1.Document.GetElementById("Email").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("pass").SetAttribute("value", TextBox2.Text)For Each element As HtmlElement In Code: WebBrowser1.Document.GetElementsByTagName("input")
If element.GetAttribute("type") = "submit" Then
element.InvokeMember("click")
End If
Next![]() 8.Dont forget to say thanks to Keep thread alive Heart RE: [Tut]How to Code your Own UDP Flooder[Tut] - 3SidedSquare - 01-15-2014 Whoah whoah whoah, since when did the VB web browser use UDP? I thought it was TCP After a double take, I realized this was a joke... heh... funny.... RE: [Tut]How to Code your Own UDP Flooder[Tut] - Pidiot - 01-15-2014 (01-15-2014, 04:13 AM)3SidedSquare Wrote: Whoah whoah whoah, since when did the VB web browser use UDP? I thought it was TCP What? i'm confused. RE: [Tut]How to Code your Own UDP Flooder[Tut] - 3SidedSquare - 01-15-2014 Before I write a wall of text, I want confirm you are legitimately confused, and you don't think there's anything funny about tricking users on the Internet. RE: [Tut]How to Code your Own UDP Flooder[Tut] - Leumonic - 01-15-2014 There is no trick here. What he did was posted code to use the WebBrowser control in VB.net to connect to an existing UDP shell on the internet and post data to it. It just happens to be very poorly done code that should never be used by the public. RE: [Tut]How to Code your Own UDP Flooder[Tut] - Cake - 04-25-2014 (04-25-2014, 10:24 AM)Nix Wrote: Nail on the head.I thought it was head on the nail o.e Re: RE: [Tut]How to Code your Own UDP Flooder[Tut] - Satan - 04-25-2014 (04-25-2014, 11:48 AM)Kodo Wrote: I thought it was head on the nail o.e The phrase is "hit the nail on its head" as in you hit, usually. RE: [Tut]How to Code your Own UDP Flooder[Tut] - xornull - 04-25-2014 (01-15-2014, 04:19 AM)Pidiot Wrote: What? i'm confused. Google what TCP/UDP is. RE: [Tut]How to Code your Own UDP Flooder[Tut] - Crypt - 04-25-2014 (01-15-2014, 04:10 AM)Pidiot Wrote: Sup Guys Iam here to teach you how to Code a UDP Flooder In VB2010! You're dumb. Go away. RE: [Tut]How to Code your Own UDP Flooder[Tut] - Shebang - 05-01-2014 If a shell (bleh) you're using has a form to submit, you can use a GET or POST request through a WebClient to not have this ridiculous code. |