Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am playing around with the pcap library in C. I can filter http traffic using the filter expression "port 80" in the pcap_compile call, but now I'm wondering whether I can filter POST requests specifically.

Does anyone know of a filter expression for filtering http POST requests?

share|improve this question

1 Answer

up vote 0 down vote accepted

The following should match only POSTs:

port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354

However, a HTTP request is likely to be split in various TCP packets, and thus you may not get the full request.

share|improve this answer
Thanks, happy holidays. – ktm5124 Dec 11 '10 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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