reaperthegriefer has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to construct a FIN packet in perl. Since i am not fimiliar with Net::RawIP i am unable to do that. Sending SYN with Net::RAWIP
How can i send a straight-forward FIN request without the need of starting a new 3-way-handshake?use Net::RawIP ($src,$dst,$port) = @ARGV; $a = new Net::RawIP; $a->set({ip => {saddr => $src,daddr => $dst},tcp => {source => $src_po +rt,dest => $port, syn => 1}}); $a->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Sending FIN Requests
by sotona (Scribe) on Sep 07, 2013 at 20:08 UTC |