I am using the Net::Pcap module to capture packets with this filter:

dst $my_host and dst port 80

Inside the Net::Pcap event loop I use a callback function:

Net::Pcap::pcap_loop($pcap_t, -1, \my_callback, '')

where my_callback look like this:

my_callback {
    my ($user_data, $header, $packet) = @_;
    #   Strip ethernet IP and TCP
    my $ether_data = NetPacket::Ethernet::strip($packet);
    my $ip         = NetPacket::IP->decode($ether_data);
    my $tcp        = NetPacket::TCP->decode($ip->{'data'});
}

How can I assemble the HTTP packets into one packet and extract its header?

link|improve this question

0% accept rate
Well, if you're reading ethernet frames, you're going to have to have the reassembly code - either you write it or someone else does. – Paul Nathan Jan 16 '11 at 22:07
ok could you help how can i parse the http header and body ? – johnny2 Jan 17 '11 at 19:05
feedback

1 Answer

try to use Sniffer::HTTP from CPAN

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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