Hello, I want to filter only the SYN packets from TCP SYN scan (both for open ports(SYN->SYN/ACK->RST) and closed ports(SYN->RST/ACK)) from a pcap file. I have written a following script to do the same and it seems working for me.
But the above script is taking hell out of time to run it.. It is taking more than a day to filter out packets from a 150MB pcap file. Can someone suggest me any other method to do the same(with tshark or snort)? asked 17 Feb ‘17, 04:35 subinjp edited 17 Feb ‘17, 04:42 grahamb ♦ |
One Answer:
For starters you could see if you can apply the ' answered 17 Feb '17, 08:08 Jaap ♦ |
@jaap Thanks for your reply. In fact I dont want to split packets in to different files. But I did not get what do you mean by it? Could you write the script below or describe it little more?