using hping, I send SYN packet, second peer is listening and replies with SYN/ACK, but hping (or linux kernel does it I guess) sends RST after receiving SYN/ACK.
Is there anyway I can stop my machine sending RST after receiving SYN/ACK?
thanks.
using hping, I send SYN packet, second peer is listening and replies with SYN/ACK, but hping (or linux kernel does it I guess) sends RST after receiving SYN/ACK.
Is there anyway I can stop my machine sending RST after receiving SYN/ACK?
thanks.
Copyright © 2021 Jogjafile Inc.
This command should drop any TCP packet with the
RST
flag set your machine would send to the specific destination:to revert it, use:
An alternative is to block all incoming TCP packets with
SYN
+ACK
flags set from the specific source (i.e. the packets that cause theRST
):to revert it, use:
Works for me with
hping3 -S -p 22 <destination>