Match each enterprise security vulnerability finding on the left with the most effective technical hardening mitigation on the right.
- An unsegmented internal network allows lateral movement between administrative endpoints using legacy remote access protocols.Enforce network microsegmentation and Zero Trust network access (ZTNA) isolation policies.
- Web application servers permit execution of untrusted user-uploaded payloads stored in temporary filesystem locations.Mount temporary storage partitions with `noexec` and `nosuid` filesystem parameters.
- High-privilege domain administrator credentials are exposed to LSASS memory harvesting attacks on compromised remote target endpoints.Implement Remote Credential Guard and Restricted Admin mode for privileged sessions.
Answer
1. Unsegmented network lateral movement matches with enforcing network microsegmentation and ZTNA policies. 2. Untrusted payload execution in temporary directories matches with mounting temporary storage partitions with `noexec` and `nosuid` parameters. 3. Credential exposure in LSASS memory matches with implementing Remote Credential Guard and Restricted Admin mode.
The security findings correctly map to their specific technical mitigations: internal lateral movement requires microsegmentation and ZTNA; temporary storage execution threats require `noexec` mount options; and remote LSASS memory credential dumping requires Remote Credential Guard.
Step-by-Step Solution
Key Concept
Enterprise Hardening and Technical Security Controls