An analyst is documenting the difference between a network indicator and a host-based indicator of compromise. Which item is best classified as a host-based indicator?
- ARepeated outbound connections to a single external address at fixed intervals across many hours
- BA DNS query for a domain generated by a known domain-generation algorithm pattern
- CA run key added under the registry that relaunches an unsigned binary each time the workstation reboots Correct
- DA spike in TLS sessions to a certificate with a mismatched common name field
Why A is wrong: Regular timed outbound connections are a classic beaconing pattern, but they are observed on the wire, making this a network indicator rather than a host one.
Why B is wrong: DNS queries are attractive because malware runs them on the host, yet the query itself is seen in network traffic, so it is a network indicator.
Why C is correct: A registry persistence entry lives on the endpoint itself and is observed by examining the host, which is the defining trait of a host-based indicator.
Why D is wrong: A suspicious certificate feels endpoint-adjacent, but it is captured by inspecting session traffic, which places it firmly among network indicators.