vote up 0 vote down star

I am sending SYN packets using raw sockets in Linux. The response(SYN+ACK) is being intercepted by the OS and it is responding with a RST. I would like to prevent the OS from intercepting this packet, and let it be handled by my application. How can I accomplish this?

flag

79% accept rate
which OS? Which language? – Aditya Sehgal Nov 8 at 14:40

1 Answer

vote up 1 vote down check

You could make a rule in IPtables to filter outgoing RST packets.

iptables -A OUTPUT -p tcp --tcp-flags RST RST -j DROP

Don't forget to disable it later! Have fun.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.