-1

How to show and block ip UDP incoming in c# WinForms. Show ip and incoming packet in label like Anti DDOS Guardian

Mykola
  • 3,343
  • 6
  • 23
  • 39

1 Answers1

2

I made a similar application some years ago using WinpkFilter. I don't know if there is something better, but this gives you all that need to read all packets passing on network interface. Once you read the packets, you can check protocol type and make all operation you need to prevent DDOS.

You have to install the WinpkFilter driver and link the ndisapi.dll library, I suggest you to give it a try and see if this can help you.

LucaMus
  • 721
  • 7
  • 17