Drill 9 ยท
AP Cybersecurity Drill 9: Clinic Network with Exposed Services 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 consultant reviews a clinic's port scan and flat network and recommends how to reduce its exposure; this drill uses an invented company and original figures.
Pellumbra Family Clinic asks a consultant to review its network. An internet-facing scan of the clinic's public address returns:
| Service | Port | Notes |
|---|---|---|
| Public website | 443 | Normal HTTPS site |
| Patient records database | 3306 | Reachable from the internet; default admin account and password still enabled |
| Office printer | 9100 | Reachable from the internet |
| Remote desktop (front-desk PC) | 3389 | Password-only; the front-desk PC can open the records database |
The clinic's network is flat and unsegmented, so a compromised device on it could attempt to reach the others. The front-desk PC is allowed to reach the database as part of normal workflow.
Question 1. Reading the scan, which service most directly exposes patient health records to the internet?
Explanation: Choice B is correct. The records database is reachable directly from the internet and still has its default admin account and password enabled, which is the most direct exposure of patient data. Choice A is incorrect. A normal HTTPS website on port 443 is expected and does not itself expose the records. Choice C is incorrect. The printer is an exposure, but it does not directly hold or serve patient records. Choice D is incorrect. The database exposure is real and serious, so it is not true that nothing exposes patient data.
Question 2. Which single detail in the scan would most likely let an attacker log in to the database without guessing a unique password?
Explanation: Choice D is correct. Default admin credentials are publicly known, so an attacker who reaches the database can log in with them without having to guess a unique password. Choice A is incorrect. Serving the website on 443 is normal and is not a credential weakness. Choice B is incorrect. The printer's port does not provide a database login. Choice C is incorrect. Using the standard database port is common and does not by itself grant access; the default credentials do.
Question 3. Why does the remote-desktop service raise the risk even though the database is the obvious target?
Explanation: Choice C is correct. The front-desk PC is reachable by password-only remote desktop and is allowed to open the records database, so compromising that PC gives an attacker an indirect route to the data. Choice A is incorrect. Remote desktop does not encrypt the database; it is a remote-access service, not a data-protection one. Choice B is incorrect. The service is internet-reachable in the scan, so it is not limited to inside the building. Choice D is incorrect. Remote desktop is a common attack target, not something attackers cannot use.
Question 4. On this flat, unsegmented network, why is the internet-reachable printer a meaningful risk and not just a harmless device?
Explanation: Choice A is correct. If an attacker compromises the internet-reachable printer, it becomes a foothold on the same flat network as the records database, from which the attacker can try to reach more sensitive systems. Choice B is incorrect. Printers do not store full patient records by default; the risk is the foothold, not stored data. Choice C is incorrect. The printer uses port 9100 and the database uses 3306, so they are not the same port. Choice D is incorrect. Networked printers can be compromised, so they are not harmless.
Question 5. Which initial remediation plan would most reduce the clinic's exposure while preserving legitimate access?
Explanation: Choice D is correct. Removing the database and remote desktop from direct internet reach, disabling the default credentials, and restricting the database to a segment only authorized clinic systems can reach together cut the direct and indirect paths to patient data while preserving legitimate access. Choice A is incorrect. A newer printer does not address the exposed database, the default credentials, or the flat network. Choice B is incorrect. Antivirus on one PC leaves the internet-reachable database and its default credentials wide open. Choice C is incorrect. Longer email passwords do nothing about an internet-reachable database with default admin credentials.