![]() |
|
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
|
RE: [Tut]How to Code your Own UDP Flooder[Tut] - 0xDEAD10CC - 05-05-2014 (05-01-2014, 02:22 PM).Shebang Wrote: 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. Submissions would be a POST request, if it's by link, then you would use a GET request. RE: [Tut]How to Code your Own UDP Flooder[Tut] - Shebang - 05-05-2014 (05-05-2014, 12:13 AM)0xDEAD10CC Wrote: Submissions would be a POST request, if it's by link, then you would use a GET request. I've seen some forms that make the request through GET by generating the GET link. I guess it's a bad implementation though. RE: [Tut]How to Code your Own UDP Flooder[Tut] - 0xDEAD10CC - 05-05-2014 But a submit button is typically used for POSTing data, if it is a GET, it's typically just a link RE: [Tut]How to Code your Own UDP Flooder[Tut] - IcanFLY - 05-06-2014 Why are people still posting on this thread? RE: [Tut]How to Code your Own UDP Flooder[Tut] - xornull - 05-06-2014 ps this method does not use UDP it will usually result in use of HTTP which uses TCP. so faku RE: [Tut]How to Code your Own UDP Flooder[Tut] - 0xDEAD10CC - 05-07-2014 (05-06-2014, 06:13 AM)xornull Wrote: ps this method does not use UDP He's using a WebBrowser to navigate to a PHP script. How do you assume that the PHP script is using the TCP protocol? :S There is no flooding with the WebBrowser, so the assumption to make here is that the PHP script is somehow responsible for doing that instead (PHP doesn't have to use TCP). RE: [Tut]How to Code your Own UDP Flooder[Tut] - xornull - 05-07-2014 (05-07-2014, 12:02 AM)0xDEAD10CC Wrote: He's using a WebBrowser to navigate to a PHP script. How do you assume that the PHP script is using the TCP protocol? :S There is no flooding with the WebBrowser, so the assumption to make here is that the PHP script is somehow responsible for doing that instead (PHP doesn't have to use TCP). Perhaps, even so, why would it not use TCP? No decent web developer should use UDP for something that doesn't need better performance [It is also prone to IP spoofing]. RE: [Tut]How to Code your Own UDP Flooder[Tut] - 0xDEAD10CC - 05-07-2014 What is the risk here though with UDP over TCP? Remember the application it's being used for here. A flooder doesnt need better performance? |