You are using Wireshark to analyze traffic from an infected host. You notice consistent beaconing activity to an external IP on port 443. How do you isolate this traffic in your capture?
Trap 1: tcp.port == 80
This would only show HTTP traffic, not the specific beaconing traffic.
Trap 2: frame.len > 1000
This isolates large packets, not specific C2 beaconing.
Trap 3: http.request
This only shows HTTP requests, potentially missing encrypted beaconing.
- A
ip.addr == [IP_ADDRESS]
This filter restricts the display to traffic involving the specific IP.
- B
tcp.port == 80
Why wrong: This would only show HTTP traffic, not the specific beaconing traffic.
- C
frame.len > 1000
Why wrong: This isolates large packets, not specific C2 beaconing.
- D
http.request
Why wrong: This only shows HTTP requests, potentially missing encrypted beaconing.