I have an Apache access log showing that multiple POST requests were sent to it and they all succeeded with a return code of 200. When I look at the Wireshark trace, I don't see anything except the certificate authentications. What am I missing here? Why don't I see the POST activity? The Wireshark trace is at: http://cloudshark.org/captures/b97dc3a7b311?filter=ip.addr%20%3D%3D%20192.168.5.103 The Apache access log entries are:
asked 16 Jul '12, 11:55 tcoder edited 16 Jul '12, 11:59 |
One Answer:
The timestamps in the capture file do not match those in the apache log.
So, either there is a time difference between the apache server and the capturing machine, or you are analyzing the wrong capture file. I assume the later, as you can't see the POST requests (no TLS Application Data in the capture file). Regards answered 16 Jul '12, 12:28 Kurt Knochner ♦ edited 16 Jul '12, 12:29 |