Board index » delphi » How can I detect attacks?

How can I detect attacks?


2006-08-21 06:48:56 PM
delphi109
Can I find some TCP attacks in my TCp server program without using firewall program?
For example I can detect connection bombing.
When any client connects to my server my server program sends them 32 bit package.
And waits corrects response.
if the client can't send correct response package server program disconect its connection.
And this 32 bit package is different for every new connection.
So my server program accept only packages these are sended from my client program.
Other any program can't send any package to my server program.
if there are alot of tcp connection from same IP and they can't send correct response package
my server program can detect.
I think there is alot of kind of tcp attacks..How can I detect them?
What are other tcp attacks? And is it posible to detect them in delphi tcp server program?
I only use indycomponents in delphi 5.
 
 

Re:How can I detect attacks?

"ali güven" <XXXX@XXXXX.COM>writes
Quote
if there are alot of tcp connection from same IP and they can
not send correct response package my server program can detect.
Easiest way is to simply not allow so many connections from the same IP to
begin with.
Gambit