This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

how to filter by webpages visited – the capture log has green, red, and other coded lines

0

how to filter by webpages visited -- the capture log has green, red, and other coded lines

asked 31 Oct '12, 18:18

wiresharkhelpers's gravatar image

wiresharkhel...
309913
accept rate: 0%


One Answer:

0

You can use this display filter:

http.request.full_uri contains "xxxxxx"

Replace the xxxx with the websites or pages you are looking for.

http.request.full_uri contains "ask.wireshark.org"
http.request.full_uri contains "/questions"

You will then get all HTTP requests that contain those strings in the URI. Right click on one of those packets and select "Follow TCP Stream" to see the whole communication for that request.

Regards
Kurt

answered 01 Nov '12, 02:46

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

edited 01 Nov '12, 02:47