An enterprise security architect is evaluating system hardening controls to address findings from a comprehensive technical vulnerability audit. Match each enterprise hardening practice on the left to its corresponding primary risk mitigation objective on the right.
- Implementation of eBPF (Extended Berkeley Packet Filter) runtime hooksMonitors and restricts system call execution at the OS kernel level to detect rootkit behavior and prevent container breakout attempts.
- Automated deployment of ephemeral short-lived access credentialsReduces the blast radius and exposure window resulting from leaked API keys or stolen service tokens across cloud infrastructure.
- Configuration of DNS RPZ (Response Policy Zone) sinkholingBlocks outbound command-and-control (C2) resolution requests and prevents DNS-based data exfiltration to known malicious domains.
- Enforcement of ASLR (Address Space Layout Randomization) paired with DEP/NX flagsNeutralizes buffer overflow and code injection exploits by randomizing process memory structures and marking data segments as non-executable.
Answer
eBPF runtime hooks match kernel-level system call monitoring and container breakout detection. Automated ephemeral credentials match reducing the exposure window of stolen service tokens. DNS RPZ sinkholing matches blocking outbound C2 domain resolution. ASLR with DEP/NX flags matches neutralizing buffer overflow and code injection exploits.
Each listed hardening control addresses a distinct technical attack vector: eBPF monitors kernel system calls to stop privilege escalation and container escapes; ephemeral access tokens limit credential abuse duration; DNS RPZ intercepts malicious outbound domain queries; and ASLR paired with DEP prevents buffer overflow code execution.
Step-by-Step Solution
Key Concept
Enterprise mitigation techniques across kernel runtime security, identity lifecycle management, network egress filtering, and OS memory protection.