SYN attack.
I have a Java Server that needs to be designed to take in 100 SYN's at one time... 25% of them are denied (RST) from the server... ( the rest complete the three way handshake ( SYN, SYN ACK, ACK ). Is there a way (through Java code) to prevent the resets?Thanks.
[284 byte] By [
javaroba] at [2007-11-26 13:56:36]

Java doesn't provide networking at that low-level. There may be some 3rd party libraries that tie into native code somewhere. Besides, shouldn't this problem be solved at the router, not at the application level?