I'm writing a sniffer program with the pcap library that checks the http traffic. I succeed when I m looking for GET messages or status codes but I don't know why it doesn't work for the post requests. I tried to use wireshark and I saw that for POST requests, in addition to the http protocol there is also an Line-based text data: application/x-www-form-urlencoded "protocol". When I try to print the content of the payload I didn't get results or I get strange characters.. so I was thinking that maybe the problem is this "Line-based.." stuff.. Any idea of the possible cause?

link|improve this question

0% accept rate
1  
Show us the sources!!! – Alexander Pogrebnyak Dec 17 '10 at 17:24
feedback

2 Answers

The strange characters may be from utf-8 encoded as opposed to ascii encoded POSTs. It also depends which applications you are looking to capture, as some Flash apps use POST requests but encrypt them to prevent tampering.

link|improve this answer
uhm I'm trying to sniff this: snee.com/xml/crud/posttest.html – cenos Dec 17 '10 at 17:35
I'm parsing the packet payload of the tcp protocol in order to find the "POST" string but I don't find nothing.. – cenos Dec 17 '10 at 17:36
90e2e550 is from one packet of 538 bytes – cenos Dec 17 '10 at 21:31
feedback

EDIT: See my answer to your other question

This is what I'm capturing with tcpdump. What do you see?

POST /xml/crud/posttest.cgi HTTP/1.1
Host: www.snee.com
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Fedora/3.6.12-1.fc13 Firefox/3.6.12
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.snee.com/xml/crud/posttest.html
Content-Type: application/x-www-form-urlencoded
Content-Length: 21

fname=test&lname=test
link|improve this answer
I see all.. so it should work also in my code.. – cenos Dec 17 '10 at 19:41
feedback

Your Answer

 
or
required, but never shown

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