Drill 14 ยท
AP Cybersecurity Drill 14: Network Monitoring Alerts is a practice drill. It contains 5 original questions created by Brian Stewart, a Barron's test prep author with over 20 years of tutoring experience.
A security operations analyst reviews alerts from network monitoring tools, some flagged by an AI-assisted system, and decides how to respond; this drill uses an invented company and original figures.
Marswick Water District watches its network with three tools. A network intrusion detection system (NIDS) watches traffic and raises alerts; a network intrusion prevention system (NIPS) can also block traffic it judges malicious; and a security information and event management (SIEM) system collects logs from across the network and groups related events. The SIEM uses an AI-assisted feature that scores how unusual each pattern is. The analyst reviews this morning's alerts.
| Time | Tool | Alert | Notes |
|---|---|---|---|
| 02:14 | NIDS | Signature match: known scanning tool | Detection only; traffic not blocked |
| 02:31 | NIPS | Blocked a connection matching a known exploit signature | Connection dropped automatically |
| 03:05 | SIEM (AI-assisted) | Unusual-pattern score high: a workstation contacted 60 internal hosts in 2 minutes | No signature; flagged as anomalous |
| 09:20 | SIEM (AI-assisted) | Unusual-pattern score high: a finance user's account was used to log in from two cities minutes apart | No signature; flagged as anomalous |
The analyst notes that the 02:14 and 02:31 alerts matched stored signatures of known bad activity, while the 03:05 and 09:20 alerts were flagged because the behavior was unusual, not because it matched a known signature.
Question 1. Reading the table, what is the key difference between the 02:31 NIPS alert and the 02:14 NIDS alert?
Explanation: Choice A is correct. The notes show the NIPS dropped the matching connection automatically, while the NIDS only detected and raised an alert without stopping the traffic; that prevention-versus-detection difference is the defining distinction between the two tools. Choice B is incorrect. It reverses the roles: the NIDS detects and the NIPS can block, not the other way around. Choice C is incorrect. Only the NIPS blocked; the NIDS alert note explicitly says traffic was not blocked. Choice D is incorrect. Both tools generated alerts in the table.
Question 2. The 02:14 and 02:31 alerts fired because traffic matched stored patterns of known bad activity, while the 03:05 and 09:20 alerts fired because the behavior was unusual. What are these two detection approaches called?
Explanation: Choice D is correct. Matching stored patterns of known bad activity is signature-based detection (the 02:14 and 02:31 alerts), while flagging behavior that departs from normal is anomaly-based detection (the 03:05 and 09:20 alerts). Choice A is incorrect. The last two alerts had no signature, so they are not signature-based. Choice B is incorrect. The first two matched known signatures, so they are not anomaly-based. Choice C is incorrect. It reverses the two approaches.
Question 3. The 03:05 alert shows one workstation contacting 60 internal hosts in 2 minutes. Which interpretation best fits this pattern?
Explanation: Choice C is correct. One workstation reaching many internal hosts in a very short time is a common indicator of scanning or worm-like lateral movement, where a compromised device probes the network for other systems; that is why the anomaly score is high. Choice A is incorrect. A routine update contacts update servers, not 60 internal peers in two minutes, so calling that normal misreads the pattern. Choice B is incorrect. A backup job sends data to one backup destination, not connections fanning out to 60 different internal hosts. Choice D is incorrect. A mistyped password is a single failed login, not a burst of connections across the internal network.
Question 4. The 09:20 alert was flagged by the AI-assisted feature because a finance user's account was used to log in from two cities minutes apart. How should the analyst describe the role of the AI here?
Explanation: Choice A is correct. The AI-assisted feature scores how unusual a pattern is and surfaces likely problems such as impossible travel for an analyst to examine; it speeds detection but does not by itself prove compromise, so human investigation is still required. Choice B is incorrect. An anomaly score is a strong lead, not proof, and overstating it as proven theft skips needed verification. Choice C is incorrect. A valid username does not guarantee a legitimate login; the tool flagged this sign-in as unusual. Choice D is incorrect. Anomaly scoring complements signatures and logs rather than replacing them.
Question 5. Given the morning's alerts, which response best balances acting on the strongest lead with avoiding alert fatigue?
Explanation: Choice B is correct. The 03:05 and 09:20 alerts suggest possible active compromise and should be investigated first; the 02:14 scan is still worth reviewing but is a lower-priority lead than evidence of internal scanning or impossible travel, and the 02:31 exploit attempt was already blocked by the NIPS. Ranking by severity is how analysts act on real threats without burning out on noise. Choice A is incorrect. Treating every alert as equally urgent is exactly what causes alert fatigue and buries the serious leads. Choice C is incorrect. The lack of a signature does not make an alert meaningless; the anomaly alerts here are the most serious. Choice D is incorrect. Disabling anomaly scoring would hide the morning's two strongest leads rather than manage the workload.