i am trying to write a program that detects a UDP DoS attack using C++ and WinPcap. What criteria can i use to identify such an attack? I have noticed many UDP DoS generator programs send the same payload over and over again so i can probably detect that but generating random payload is exceedingly simple. Any ideas on what to do?
Asked
Active
Viewed 539 times
1 Answers
0
I'm assuming that the UDP packets will have spoofed IP addresses. If you're not going to whitelist the requests so that you can test them for validity, then you may as well come up with a threshold above which you've decided it's "probably" a DoS attack.

Marcus Adams
- 53,009
- 9
- 91
- 143
-
-
@user1470033, the threshold is something you'll decide and tweak as you go. – Marcus Adams Aug 16 '12 at 12:11