How to see webpage content (as a whole) sent to user with wireshark

packet, packet-capture, wifi, wireshark

Solution

Try to find packets of HTTP protocol with data. Try filter: `http && (media || data-text-lines)`. And look what you get in this packets.

Problem

I use my pc as the wifi hotspot, and connect other devices to it. Then with wireshark, I can see the packets sending/receiving on a specific device, but how can I see the complete webpage that the device is viewing instead of separate packets?

Original source

Related problems