0

I ran wireshark for a while and opened a few webpages now my class assignment is asking me to find out the number of http and https connections established. Can you suggest commands or filters to find these out?

Szr
  • 29
  • 5

1 Answers1

1

HTTP is connection-less, that means client and server knows about each other during current request and response only. You can open the .pcapng file and then

  • Click on “Statistics”
  • Select “HTTP”
  • Select “Packet Counter“

enter image description here

In my case, I can 14 requests and 14 responses. (Success 2xx).

enter image description here

Prasad 14723312
  • 539
  • 1
  • 3
  • 14