This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

SYN ATTCK USIN INTERNET

0

WE ARE USING A SATELITE LINK TO REACH INTERNET AND OUR PROVIDER SEES MANY SYN ATTACK REQUEST IN THEIR MONITORING SYSTEM. THIS ATTACK AFFECTA US PRODUCING DELAY IN OUR APPLICATION LIKE THAT: BPOS EMAIL, AND INTERNET NAVEGATION. DO YOU HAVE AN EXAMPLE HOW TO DETECT THIS ATTACK WITH WIRESHARK?

asked 02 Apr '11, 11:04

ROGER's gravatar image

ROGER
1111
accept rate: 0%


One Answer:

0

First of all, you might want to disable your CAPS lock key ;-)

Detecting SYN Flood attacks is usually quite easy - if you see lots of packets coming in with the SYN flag set in a very short time frame (from either one single IP or literally from all over the world) you're probably being attacked. Typically those attacks try to hammer your servers with rapid series of SYNs without ever reacting to the resulting SYN/ACK. If you're not familiar with the TCP Three Way Handshake you should do that, and then find out if the incoming sessions leave the connections half open by not sending the final ACK.

You might want to filter on SYN packets using tcp.flags.syn==1 or even tcp.flags==0x02, but if you're really SYN flooded you usually don't have to do that, you'll see nothing more but SYNs in your trace anyway.

answered 02 Apr '11, 11:11

Jasper's gravatar image

Jasper ♦♦
23.8k551284
accept rate: 18%