Security Architecture

405 soru

Soru 181Soru

A cloud-native financial services company is updating the security architecture of its containerized microservices platform, which handles real-time payment transactions. The security team must limit lateral movement across internal workloads, enforce zero trust principles for internal service communication, and ensure continuous traffic inspection. Which of the following technical controls should the security team implement to achieve this network segmentation design? (Select TWO).

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Deploy host-level microsegmentation policies via a service mesh to enforce mutual TLS (mTLS) authentication and application-layer authorization for pod-to-pod communications.; Implement internal layer 7 firewalls and deep packet inspection between internal service tiers to continuously inspect and control East-West network flows.

Cevap

The security team should deploy service mesh host-level microsegmentation with mutual TLS (mTLS) and implement internal layer 7 firewalls to inspect East-West network traffic continuously.
Implementing service mesh microsegmentation with mutual TLS enforces cryptographically verified identity and application-layer policies between container workloads. Pairwise layer 7 internal firewalling ensures continuous deep packet inspection of East-West traffic, directly stopping unauthorized lateral movement within the cloud environment.

Adım Adım Çözüm

1
Analyze the requirements for limiting lateral movement and enforcing zero trust within microservice workloads.
Identified that microservice environments require workload-centric identity and granular East-West traffic controls rather than edge-only defenses.
Containerized workloads share underlying network infrastructure, making traditional perimeter security insufficient.
2
Evaluate microsegmentation and cryptographic access options.
Selected service mesh microsegmentation with mTLS to enforce endpoint identity and application-layer access controls between individual pods.
mTLS guarantees cryptographically validated service identities and encrypts internal traffic.
3
Evaluate traffic inspection mechanisms for internal flows.
Selected internal layer 7 deep packet inspection firewalls for continuous monitoring and filtering of East-West microservice communication.
Layer 7 inspection detects payload threats and protocol anomalies traversing internal segments.

Anahtar Kavram

Microsegmentation and East-West Traffic Protection in Zero Trust Architecture
Soru 182Soru

During a technical security assessment of an enterprise cloud environment, a security engineer discovers that a process running within a containerized workload executed a host kernel exploit to access memory allocated to neighboring containers on the same host. To mitigate this risk, the organization must implement an architecture that prevents shared-kernel vulnerability exploitation by providing an independent kernel and hardware-enforced separation for each workload. Which of the following solutions should the engineer recommend?

Cevabı ve açıklamayı göster

Cevap: Type-1 hypervisor virtual machines

Cevap

Type-1 hypervisor virtual machines provide hardware-enforced isolation and separate OS kernels for each workload, eliminating shared-kernel vulnerabilities inherent to containers.
Implementing Type-1 hypervisor virtual machines guarantees that each workload operates within its own virtualized hardware environment and runs its own isolated kernel. Because virtual machines do not share a kernel with the host or neighboring workloads, a kernel compromise in one VM cannot directly reach another VM.

Adım Adım Çözüm

1
Analyze the security breach vector presented in the scenario.
Identified that the vulnerability exploited the shared kernel model of standard application containers.
Containers share the underlying host operating system kernel, making all co-located containers vulnerable if a kernel-level exploit occurs.
2
Evaluate the architectural requirements specified by the organization.
Determined that the target architecture requires dedicated OS kernels and hardware-backed isolation boundaries.
Eliminating shared-kernel exploits requires moving from OS-level virtualization (containers) to hardware virtualization (virtual machines).
3
Select the appropriate technology component.
Type-1 hypervisors manage virtual machines directly on bare-metal hardware, supplying separate kernels and strong isolation for each instance.
Virtual machines running on a bare-metal hypervisor maintain completely independent kernel spaces.

Anahtar Kavram

Virtual Machine Isolation vs. Shared-Kernel Container Architecture
Soru 183Soru

An enterprise organization is deploying a centralized storage architecture hosting high-value transactional databases. Compliance regulations require that all storage volumes maintain encryption at rest, and master cryptographic keys must be generated, safeguarded, and offloaded to dedicated hardware isolated from host OS administrators to prevent unauthorized key extraction. Which of the following solutions should the security architect integrate into the storage architecture to fulfill this key management requirement?

Cevabı ve açıklamayı göster

Cevap: Hardware Security Module (HSM)

Cevap

Hardware Security Module (HSM)
A Hardware Security Module (HSM) is a hardened, physical computing device that safeguards and manages digital keys, performs encryption and decryption functions, and generates strong random cryptographic keys. By storing master keys inside an HSM, key extraction by host operating system administrators or malware is prevented.

Adım Adım Çözüm

1
Analyze the enterprise security requirement
Identified the core requirement: isolating cryptographic key generation and management into dedicated hardware separate from the host OS.
Host operating systems and hypervisors can be compromised by privilege escalation or unauthorized administrative key extraction.
2
Evaluate potential storage protection and key management solutions
Determined that a Hardware Security Module (HSM) provides physical isolation, tamper resistance, and secure key lifecycle management.
HSMs meet regulatory standards (such as FIPS 140-2/140-3) for key isolation and offloaded cryptographic processing.

Anahtar Kavram

Hardware-Based Key Protection and Storage Security Architecture
Soru 184Soru

A regional financial institution migrates its customer ticketing platform to a public cloud provider under a Software as a Service (SaaS) model. During an architectural security review, the team evaluates operational duties under the cloud shared responsibility model. Which of the following security controls remains the sole responsibility of the financial institution?

Cevabı ve açıklamayı göster

Cevap: Managing user identity lifecycles, access role assignments, and data classification policies

Cevap

Managing user identity lifecycles, access role assignments, and data classification policies remains the sole responsibility of the institution.
Under the cloud shared responsibility model for Software as a Service (SaaS), the cloud service provider manages all lower-tier components including physical security, infrastructure hardware, hypervisors, operating systems, and application code. The customer maintains full responsibility for managing their own data, classifying sensitivity levels, and configuring identity and access management (IAM) policies.

Adım Adım Çözüm

1
Identify the cloud deployment and service model
The scenario specifies a Software as a Service (SaaS) model.
Service models dictate how control responsibilities are divided between provider and subscriber.
2
Delineate responsibilities for SaaS environments
The Cloud Service Provider (CSP) manages physical facilities, hardware, hypervisors, OS patching, and application runtime code.
SaaS abstracts all underlying infrastructure and application maintenance away from the customer.
3
Determine customer-owned operational boundaries
The customer is always responsible for data governance, data classification, device security, and user access management regardless of service model.
Identity and data remain customer responsibilities across IaaS, PaaS, and SaaS.

Anahtar Kavram

Cloud Shared Responsibility Model in SaaS
Tahmini Süre:1m 15s
Soru 185Soru

A regional health insurance organization is migrating its claims processing engine to a cloud provider using a Serverless Function-as-a-Service (FaaS) execution model connected to a managed Database-as-a-Service (DBaaS) backend. During a compliance audit, the security team is asked to document control ownership across the deployment layers. Which of the following statements correctly identifies the customer's operational responsibility in this deployment architecture?

Cevabı ve açıklamayı göster

Cevap: Managing application source code security, data classification, and fine-grained identity and access policies.

Cevap

The customer is responsible for managing application source code security, data classification, and fine-grained identity and access policies.
Under the cloud shared responsibility model for serverless (FaaS) and managed database (PaaS) architectures, the cloud service provider manages all underlying hardware, hypervisors, OS patching, and engine runtimes. The customer retains full responsibility for securing their application logic/code, classifying their data, and configuring identity and access management permissions.

Adım Adım Çözüm

1
Analyze the specified cloud service models in the scenario
The architecture utilizes Serverless (FaaS) and Database-as-a-Service (DBaaS), both falling under Platform as a Service (PaaS) abstract execution models.
Determining the exact service model dictates the boundary line in the Cloud Shared Responsibility Model.
2
Evaluate cloud service provider (CSP) responsibilities for PaaS/FaaS
The CSP manages physical data centers, hardware, hypervisors, OS patching, database software engine maintenance, and runtime environments.
Abstracted environments offload infrastructure and host maintenance away from the customer.
3
Identify non-transferable customer responsibilities
Regardless of cloud abstraction, data ownership, identity management, access control configurations, and application code security always remain the responsibility of the cloud customer.
The customer owns customer data and the code deployed onto provider platforms.

Anahtar Kavram

Cloud Shared Responsibility Model in Serverless and PaaS Environments
Tahmini Süre:1m 40s
Soru 186Soru

A security engineer is hardening a shared Linux host operating system that runs multiple microservices inside runtime containers. To prevent a compromised container process from escalating privileges on the host or compromising adjacent workloads sharing the same host kernel, which TWO security mechanisms should the engineer implement? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Apply custom secure computing mode (seccomp) profiles to restrict unneeded system calls available to containerized applications.; Utilize Linux kernel namespaces and control groups (cgroups) to isolate process environments and strictly limit resource consumption.

Cevap

The engineer should apply custom secure computing mode (seccomp) profiles to restrict system call access and utilize Linux kernel namespaces and control groups (cgroups) to isolate process resources and limit consumption.
Because containerized workloads share the host operating system kernel, securing them requires kernel-level isolation controls. Applying custom secure computing mode (seccomp) profiles restricts the specific host system calls accessible to container processes, minimizing the impact of potential kernel exploits. Utilizing Linux kernel namespaces provides process, mount, and network interface isolation, while control groups (cgroups) set resource limits to prevent container workloads from consuming excessive host CPU or memory.

Adım Adım Çözüm

1
Analyze container isolation architecture and risks
Containers execute as user-space processes directly on the host kernel, making system call access and resource boundary enforcement essential defenses against kernel exploitation and host denial-of-service.
Unlike virtual machines, containers share kernel resources, requiring OS-level primitives for isolation.
2
Identify system call restriction controls
Applying custom seccomp profiles blocks unnecessary host system calls from being executed by container processes.
Restricting system calls limits the host kernel surface exposed to potential exploits.
3
Identify process isolation and boundary controls
Configuring kernel namespaces partitions system views (PID, NET, IPC, MNT), while cgroups enforce memory and CPU quotas.
Namespaces restrict visibility into host processes and network interfaces, and cgroups prevent container resource exhaustion.

Anahtar Kavram

Kernel-level isolation and surface reduction for containerized environments
Tahmini Süre:2m 0s
Soru 187Soru

A retail chain is redesigning its store network architecture to satisfy payment card industry compliance requirements. Each store location operates on-site Point-of-Sale (POS) terminals connected to a shared local switch alongside store manager workstations and guest access points. To minimize audit scope and prevent lateral threat movement if a single terminal is compromised, POS terminals must be blocked from communicating directly with one another on the local switch while retaining full access to the router default gateway for transaction processing. Which network design control should the security engineer implement on the local switch?

Cevabı ve açıklamayı göster

Cevap: Private VLANs (PVLANs) with POS terminals configured on isolated ports and the router connected to a promiscuous port

Cevap

Private VLANs (PVLANs) with POS terminals configured on isolated ports and the router connected to a promiscuous port
Private VLANs (PVLANs) provide Layer 2 isolation within the same IP subnet. Configuring POS terminal ports as isolated ports ensures that frames sent between POS terminals are blocked at the switch layer. Configuring the router connection on a promiscuous port enables all isolated ports to communicate upstream with the default gateway for transaction processing.

Adım Adım Çözüm

1
Analyze the technical requirement and isolation boundary
POS terminals reside on the same Layer 2 switch segment but must be prevented from sending East-West traffic to one another while continuing to send North-South traffic to the gateway.
Restricting lateral movement inside a shared subnet limits malware spread and reduces compliance audit boundaries.
2
Evaluate Layer 2 microsegmentation capabilities
Private VLANs (PVLANs) partition a VLAN into primary and secondary domains, providing granular port-level isolation without requiring separate subnets per host.
Isolated ports drop all frames directed to other isolated ports, forwarding traffic only to designated promiscuous ports.
3
Select the correct switch configuration
Assign POS switch ports as isolated ports and the default gateway router port as a promiscuous port.
This setup allows terminals to reach external payment networks via the gateway while completely blocking intra-VLAN communication.

Anahtar Kavram

Private VLAN (PVLAN) Microsegmentation
Tahmini Süre:1m 30s
Soru 188Soru

A global transport logistics enterprise operates edge processing nodes in regional data centers to handle real-time vehicle telematics. High-frequency microservices exchange East-West traffic with strict low-latency requirements, while aggregate telematics summaries are transmitted North-South to the central corporate cloud. A security assessment revealed that external vendor technicians connect to administrative interfaces using direct subnets, creating significant risk of lateral movement across internal services. Which of the following network architecture designs best secures the edge processing environment while preserving performance and administrative isolation?

Cevabı ve açıklamayı göster

Cevap: Implement software-defined microsegmentation using an eBPF service mesh for internal East-West microservice traffic, paired with a dedicated jump server inside an isolated management DMZ for external technician administrative access.

Cevap

The optimal design uses software-defined microsegmentation (via an eBPF service mesh) for East-West microservice traffic and an isolated management DMZ jump server for third-party administrative access.
Combining eBPF-based service mesh microsegmentation with a management DMZ jump server enforces Zero Trust principles. Microsegmentation secures East-West microservice communication with sub-millisecond overhead, while the jump box restricts external vendor access to a monitored, single entry point, preventing lateral movement into internal telemetry networks.

Adım Adım Çözüm

1
Analyze traffic vectors and operational requirements.
Identified two primary traffic paths: East-West microservice telematics processing (demanding minimal latency) and North-South reporting/administrative access.
Different traffic types require tailored security controls to avoid latency bottlenecks while maintaining isolation.
2
Evaluate internal East-West control mechanisms.
Selected eBPF service mesh microsegmentation to enforce identity-based access policies directly at the host/kernel level with minimal overhead.
Traditional network firewalls introduce latency and lack container/microservice visibility, whereas microsegmentation prevents lateral movement inside the network.
3
Select administrative remote access controls.
Routed third-party technician access through a centralized jump box (bastion host) within a dedicated management DMZ.
Direct subnet access by vendors presents high risk; a jump server ensures strict authentication, session logging, and isolation from critical microservice networks.

Anahtar Kavram

Secure Network Design and Microsegmentation
Soru 189Soru

A municipal water utility is designing a network architecture to allow its corporate analytics platform to pull daily operational telemetry logs from a Supervisory Control and Data Acquisition (SCADA) server located inside a high-security Operational Technology (OT) zone. The organization's security policy strictly forbids any inbound network connections into the SCADA zone and prohibits direct bi-directional TCP/IP session establishment between the corporate network and the OT environment. Which of the following network architecture controls best fulfills these requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy a unidirectional gateway (data diode) that physically enforces one-way hardware data transmission from the SCADA zone to a historian server in the corporate DMZ.

Cevap

Deploy a unidirectional gateway (data diode) that physically enforces one-way hardware data transmission from the SCADA zone to a historian server in the corporate DMZ.
Deploying a unidirectional gateway (data diode) physically enforces one-way data flow using optical emitters and receivers. This guarantees that SCADA telemetry can be sent to an enterprise DMZ server without allowing any inbound electrical signals or network connection requests back into the SCADA network.

Adım Adım Çözüm

1
Analyze the security constraints specified in the scenario.
Identified two strict rules: zero inbound network connections permitted into the OT/SCADA zone, and no bi-directional TCP/IP sessions allowed between IT and OT.
Security controls must enforce absolute traffic directionality to protect critical infrastructure OT environments from corporate network compromise.
2
Evaluate potential network segmentation technologies against the constraints.
Standard firewalls, VLAN ACLs, and jump boxes all rely on software logic or enable bi-directional TCP handshakes, allowing potential inbound requests.
Only hardware-enforced unidirectional transmission (data diodes) physically prevents optical or electrical signal propagation in the reverse direction.
3
Select the optimal control mechanism.
A unidirectional gateway (data diode) transmitting SCADA telemetry outbound to a corporate DMZ historian server satisfies all requirements.
This architecture allows external systems to consume telemetry without exposing the SCADA network to inbound connection attempts.

Anahtar Kavram

Unidirectional Data Diodes and OT/ICS Segmentation
Soru 190Soru

A system administrator needs to protect sensitive data stored on enterprise storage drives against physical theft while ensuring that the underlying cryptographic keys are securely generated and managed using a dedicated hardware appliance. Which of the following technical controls should be implemented to fulfill these requirements? (Select TWO)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Self-Encrypting Drives (SEDs) to perform automatic hardware-level data-at-rest encryption; Hardware Security Module (HSM) for centralized, secure cryptographic key generation and storage

Cevap

The correct technical controls are implementing Self-Encrypting Drives (SEDs) for hardware-level data-at-rest encryption and deploying a Hardware Security Module (HSM) for secure key management.
Implementing Self-Encrypting Drives (SEDs) ensures that data on physical disk drives is encrypted automatically at rest, safeguarding data against physical drive theft. Pairing SEDs with a Hardware Security Module (HSM) provides a hardened, dedicated physical appliance to securely generate, store, and manage the cryptographic keys required for storage protection.

Adım Adım Çözüm

1
Identify the control required for hardware-level data-at-rest protection against physical theft
Self-Encrypting Drives (SEDs) encrypt disk sectors automatically via onboard hardware, preventing unauthorized data access if the drive is physically removed.
SEDs provide disk encryption at rest directly on the storage hardware.
2
Identify the dedicated hardware control for cryptographic key management
A Hardware Security Module (HSM) provides a tamper-resistant environment specialized for key generation, storage, and protection.
HSMs meet the requirement for centralized and secure key lifecycle operations.

Anahtar Kavram

Data Protection at Rest and Cryptographic Storage Architecture
Tahmini Süre:1m 0s
Soru 191Soru

An organization needs to monitor and prevent sensitive data, such as personally identifiable information (PII), from being copied onto unauthorized USB storage devices or uploaded to unauthorized web services by internal users. Which of the following data protection solutions is designed to inspect file contents and enforce access policies based on data classification rules?

Cevabı ve açıklamayı göster

Cevap: Data Loss Prevention (DLP)

Cevap

Data Loss Prevention (DLP) is the correct control because it inspects file contents against policy rules to identify sensitive data and restrict unauthorized data transfers.
Data Loss Prevention (DLP) tools dynamically inspect file content and metadata against organizational security policies, allowing administrators to block sensitive data transfers to removable storage devices or external web destinations.

Adım Adım Çözüm

1
Analyze the operational requirement.
The requirement calls for inspecting file contents to identify sensitive data and preventing unauthorized copying to external storage or cloud destinations.
Identifying sensitive data during user activities requires content-aware inspection.
2
Evaluate available storage security technologies.
Data Loss Prevention (DLP) operates by analyzing data pattern signatures and classifications to enforce contextual copy and upload restrictions.
Other storage controls like FDE, HSM, or SAN zoning protect physical volumes, manage keys, or isolate network storage rather than monitoring endpoint content movement.

Anahtar Kavram

Data Loss Prevention (DLP) controls for data in use and data in motion
Tahmini Süre:45s
Soru 192Soru

A enterprise payment processing organization needs to protect sensitive credit card Primary Account Numbers (PAN) stored within a centralized relational database. The security architecture team must ensure that if an unauthorized user or database administrator queries the storage tables, the sensitive numerical data is not exposed. Additionally, downstream analytics applications must be able to process database records without altering the underlying database schema length or data format. Which of the following storage data protection mechanisms best meets these architectural requirements?

Cevabı ve açıklamayı göster

Cevap: Tokenization of sensitive data fields

Cevap

Tokenization of sensitive data fields is the most appropriate control because it substitutes sensitive values with non-sensitive tokens while preserving data format and length for database compatibility.
Tokenization replaces sensitive numbers with non-sensitive surrogate tokens that match the original data type and format. This prevents unauthorized users and database administrators from viewing raw sensitive data while allowing existing application schemas and analytics jobs to function without structural modifications.

Adım Adım Çözüm

1
Analyze the operational requirements
The requirements demand protecting sensitive records against internal database query exposure while maintaining length and format compatibility for downstream reporting.
Database schema preservation prevents downstream application failures while securing sensitive fields at rest.
2
Evaluate data protection controls against format-preserving requirements
Tokenization maps sensitive records to format-preserving surrogate values without exposing original data to unauthorized queries.
Tokenization isolates the underlying sensitive data in a token vault while providing safe surrogate values to database consumers.

Anahtar Kavram

Data Tokenization and Format-Preserving Protection
Soru 193Soru

An enterprise network administrator needs to add a dedicated hardware appliance to the data center to handle high-volume cryptographic processing and securely protect master private keys. Which of the following hardware security controls best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: Hardware Security Module (HSM)

Cevap

Hardware Security Module (HSM)
A Hardware Security Module (HSM) is a dedicated, physical crypto-processor designed specifically for generating, storing, and managing digital keys while accelerating heavy cryptographic calculations across network systems.

Adım Adım Çözüm

1
Identify the operational requirements described in the scenario
The requirement specifies a dedicated hardware appliance capable of high-volume cryptographic processing and secure master key storage.
Enterprise servers require specialized physical security boundary hardware when handling high cryptographic loads and sensitive keys.
2
Evaluate the candidate hardware security controls against the requirements
A Hardware Security Module (HSM) is specifically designed as a network-attached or plug-in physical device for centralized key management and cryptographic acceleration.
Unlike endpoint chips like TPMs or software cipher suites, an HSM provides dedicated, tamper-evident hardware dedicated to cryptographic operations.

Anahtar Kavram

Hardware Security Module (HSM) vs endpoint security hardware
Tahmini Süre:45s
Soru 194Soru

An enterprise cloud security architect is establishing baseline control requirements for host operating systems, hypervisors, and container runtime environments across a hybrid infrastructure. Match each security mechanism to its corresponding isolation property or security enforcement role.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Linux Namespaces
Linux Control Groups (cgroups)
Type-1 Bare-Metal Hypervisor
Secure Computing Mode (seccomp)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Linux Namespaces match isolated process views of system resources; Linux Control Groups (cgroups) match limiting hardware resource consumption; Type-1 Bare-Metal Hypervisor matches executing directly on host hardware for virtual machine separation; Secure Computing Mode (seccomp) matches filtering host kernel system calls.
Each mechanism aligns directly with its underlying operating system or hypervisor security control role: Namespaces restrict system visibility, cgroups control resource limits, Type-1 hypervisors provide bare-metal hardware separation, and seccomp limits system call access to the host kernel.

Adım Adım Çözüm

1
Analyze container kernel isolation controls.
Identify that Linux Namespaces control resource visibility (what a process can see), whereas cgroups control resource allocation (how much a process can consume).
Differentiating process boundaries from resource constraint enforcement is essential in container runtime security.
2
Analyze kernel interface reduction mechanisms.
Identify seccomp as the Linux security capability that restricts privileged kernel syscall execution.
Syscall filtering mitigates container escape vulnerabilities that target host kernel flaws.
3
Analyze hypervisor virtualization mechanisms.
Identify Type-1 hypervisors as bare-metal software layers enforcing hardware abstraction for guest VMs.
Hardware-assisted hypervisors create a distinct security boundary separate from container OS-level virtualization.

Anahtar Kavram

Virtualization vs. Containerization Isolation Primitives
Soru 195Soru

A commercial maritime cargo fleet operator is upgrading the network architecture of its oceanic container vessels. Each vessel operates an onboard Integrated Platform Management System (IPMS) that manages engine propulsion, steering control, and ballast sensors. The operations team requires continuous, real-time diagnostic telemetry transmitted from the IPMS to a cloud-based monitoring portal via an onboard satellite communications transceiver. However, strict maritime cybersecurity standards dictate that no inbound communication vectors or return-path network packets may ever reach the critical IPMS control network segment. Which of the following network architecture controls BEST satisfies the operational telemetry requirement while enforcing absolute inbound traffic prevention?

Cevabı ve açıklamayı göster

Cevap: Deploying a unidirectional security gateway (data diode) between the IPMS control segment and the satellite transceiver network.

Cevap

Deploying a unidirectional security gateway (data diode) between the IPMS control segment and the satellite transceiver network is the optimal control.
Deploying a unidirectional security gateway (data diode) provides physical, optical-level single-direction communication. An LED transmitter on the IPMS side sends light signals to a photodiode receiver on the satellite network side without any reverse optical transceiver existing on the cable. This enables continuous outbound telemetry stream exporting while guaranteeing that no inbound packets, exploit payloads, or TCP ACK signals can ever traverse back into the IPMS control zone.

Adım Adım Çözüm

1
Analyze the operational and security requirements
Real-time telemetry must flow outbound from the IPMS control segment to the satellite transceiver, but zero inbound communications/packets must be allowed back into the IPMS control segment.
Maritime safety standards require absolute isolation against remote command injection, inbound attacks, or backchannel manipulation of critical propulsion systems.
2
Evaluate candidate network isolation mechanisms against physical vs. logical controls
Logical controls (firewalls, PVLANs, jump servers) preserve bidirectional physical pathways and rely on software configurations, whereas a data diode enforces hardware-based unidirectional data transfer (typically via LED sender and photodiode receiver).
Hardware-enforced unidirectional gateways guarantee that return packets, acknowledgement signals, or inbound exploit attempts are physically blocked at the physical layer.
3
Select the option providing absolute non-reversible isolation
The unidirectional security gateway (data diode) meets both the outbound monitoring requirement and the absolute zero-inbound isolation constraint.
It eliminates the risk of software bypass, misconfiguration, or protocol exploitation that affects purely logical segmentation methods.

Anahtar Kavram

Unidirectional Network Security Gateways (Data Diodes) and Industrial Control System (ICS/OT) Segmentation
Tahmini Süre:2m 0s
Soru 196Soru

A security analyst is evaluating deployment options for a high-security workload that requires strong, hardware-level isolation from other applications sharing the same physical server. Which of the following deployment technologies provides this hardware-level abstraction by running a separate guest operating system on top of a hypervisor?

Cevabı ve açıklamayı göster

Cevap: Virtual machines managed by a Type 1 hypervisor

Cevap

Virtual machines managed by a Type 1 hypervisor provide hardware-level isolation by virtualizing physical hardware resources and executing complete, isolated guest operating systems.
Virtual machines running on a bare-metal (Type 1) hypervisor abstract physical hardware components, enabling each virtual machine to run its own independent guest operating system kernel. This provides strong, hardware-level isolation boundaries between tenant workloads on the same physical host.

Adım Adım Çözüm

1
Identify the required level of isolation
The requirement specifies hardware-level isolation between workloads on shared physical hardware.
Different virtualization models isolate at different layers (hardware vs OS kernel).
2
Evaluate the architectural boundary of virtual machines
Virtual machines use a hypervisor layer to abstract hardware, giving each VM its own dedicated kernel and OS space.
This establishes hardware abstraction and prevents guest workloads from directly sharing host kernel memory.

Anahtar Kavram

Virtual Machine vs Container Isolation Boundaries
Soru 197Soru

An enterprise financial network is deploying a high-throughput NVMe Storage Area Network (SAN) array to process ultra-low latency trading transactions containing sensitive data. The lead security architect must ensure all data at rest is cryptographically protected against physical drive theft or unauthorized removal from the data center without degrading storage controller IOPS performance. Furthermore, drive decommissioning must support instant cryptographic erasure without requiring manual degaussing or physical drive shredding, while root keys must be bound to a centralized enterprise key management architecture over Key Management Interoperability Protocol (KMIP). Which architectural design strategy best satisfies all of these operational and cryptographic requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy hardware-based Self-Encrypting Drives (SEDs) utilizing symmetric AES Media Encryption Keys (MEKs) generated on-drive, wrapped by Key Encryption Keys (KEKs) managed centrally by an enterprise Hardware Security Module (HSM) over KMIP.

Cevap

Deploy hardware-based Self-Encrypting Drives (SEDs) utilizing symmetric AES Media Encryption Keys (MEKs) generated on-drive, wrapped by Key Encryption Keys (KEKs) managed centrally by an enterprise Hardware Security Module (HSM) over KMIP.
Self-Encrypting Drives (SEDs) perform bulk data-at-rest encryption inside dedicated drive controller ASICs using symmetric AES keys (MEKs). By integrating with a centralized Hardware Security Module (HSM) via KMIP to manage Key Encryption Keys (KEKs), the organization achieves offloaded hardware-rate performance, centralized key lifecycle control, and instant cryptographic erasure upon drive retirement through KEK revocation.

Adım Adım Çözüm

1
Evaluate storage performance and data confidentiality requirements
Bulk encryption must be executed at hardware wire-speed (on-drive encryption/SEDs using symmetric ciphers like AES) to avoid latency overhead on host CPUs and storage controllers.
Host-based software encryption or asymmetric ciphers add substantial computational overhead incompatible with ultra-low latency NVMe SAN trading platforms.
2
Evaluate key management and sanitization/decommissioning requirements
Cryptographic erasure (crypto-shredding) is achieved by revoking or zeroizing the Key Encryption Key (KEK) or Media Encryption Key (MEK).
When the KEK managed in the central HSM is destroyed or access revoked via KMIP, data on the drive instantly becomes unrecoverable plaintext, fulfilling zeroization mandates without physical destruction.
3
Synthesize key management integration
Centralizing KEK governance within a Hardware Security Module (HSM) using KMIP integrates enterprise key management with localized SED hardware encryption.
This establishes a robust root of trust while enforcing separation of duties between storage hardware and key storage.

Anahtar Kavram

Storage Security Architecture, SEDs, HSM Key Hierarchy, and Cryptographic Erasure
Soru 198Soru

A software development team is deploying a microservice application using containerization on a shared Linux host operating system. To mitigate the risk of a compromised container issuing malicious system calls directly to the host OS kernel, the security administrator needs to restrict syscall availability for the container runtime environment. Which of the following is the most effective security control to achieve this requirement?

Cevabı ve açıklamayı göster

Cevap: Implementing a custom Secure Computing Mode (seccomp) profile for the container runtime

Cevap

Implementing a custom Secure Computing Mode (seccomp) profile for the container runtime
Seccomp (Secure Computing Mode) is a security feature in the Linux kernel that allows an administrator to filter the system calls a container process can issue. By applying a restrictive seccomp profile, malicious or unnecessary syscalls are blocked before reaching the host kernel.

Adım Adım Çözüm

1
Identify the primary threat vector in the scenario
A compromised process in a container invoking unauthorized host kernel system calls (syscalls).
Containers share the host operating system kernel, making kernel syscall exploitation a major privilege escalation vector.
2
Evaluate technical controls for limiting syscall access
Seccomp profiles allow administrators to define specific syscall whitelist/blacklist rules for processes.
Restricting syscalls via seccomp minimizes the attack surface against kernel-level vulnerabilities.
3
Differentiate seccomp from other container management mechanisms
cgroups limit resource allocation, namespaces isolate visibility, while seccomp restricts syscall capability.
Choosing the precise kernel restriction tool directly addresses system call privilege containment.

Anahtar Kavram

Container Hardening via System Call Filtering (Seccomp)
Tahmini Süre:1m 30s
Soru 199Soru

An enterprise organization is designing a high-availability infrastructure for a mission-critical financial application. The business requirements state that the system must maintain a Recovery Point Objective (RPO) of zero and support automated failover across geographically separated data centers. The lead architect proposes an active-passive dual-datacenter configuration utilizing asynchronous storage volume replication and dynamic DNS routing to switch client traffic upon primary site failure. Which of the following evaluations best explains why this proposed design fails to meet the organization's requirements?

Cevabı ve açıklamayı göster

Cevap: Asynchronous storage replication allows transactions to commit locally before remote confirmation, creating a window for data loss that violates an RPO of zero during an unannounced failure.

Cevap

Asynchronous storage replication allows transactions to commit locally before remote confirmation, creating a window for data loss that violates an RPO of zero during an unannounced failure.
Synchronous storage replication requires data to be written and acknowledged at both primary and secondary sites before a transaction is marked complete. Asynchronous storage replication, while offering lower latency across geographic distances, allows the primary storage system to acknowledge writes before they are transmitted to the secondary site. Consequently, if the primary site fails unexpectedly, any data in transit or queued for replication is lost, directly violating the requirement of an RPO of zero.

Adım Adım Çözüm

1
Analyze the core architectural requirement
The requirement specifies an RPO (Recovery Point Objective) of zero, meaning no data loss is permitted during a failover event.
RPO defines the maximum tolerable period during which data might be lost due to a major incident.
2
Evaluate the capabilities of asynchronous storage replication
Asynchronous replication writes data to the primary storage first and acknowledges the write to the application immediately, sending data to the remote replica asynchronously.
This introduces a latency buffer where un-replicated transactions pending transfer will be lost if the primary site goes offline.
3
Identify the correct high-availability control required
Synchronous storage replication must be used to guarantee RPO = 0, as it requires write confirmation from both sites before committing.
Only synchronous replication ensures that no uncommitted data exists solely on the failing primary node.

Anahtar Kavram

Synchronous vs. Asynchronous Replication and RPO Bounds in High Availability Architectures
Soru 200Soru

A enterprise network security architect is reviewing the organization's network segmentation model across physical, virtual, and industrial environments. Match each network segmentation approach to the business and architectural requirement it best addresses.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Air Gap
Microsegmentation
Screened Subnet (DMZ)
Jump Box (Bastion Host)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Air Gap matches physical isolation of OT systems; Microsegmentation matches granular software-defined East-West traffic control between workloads; Screened Subnet matches hosting public-facing services separated from private networks; Jump Box matches providing a single audited administrative transit point into sensitive zones.
Air gapping ensures physical isolation for critical OT systems. Microsegmentation enforces policy-based isolation for East-West cloud workload traffic. A screened subnet isolates internet-accessible assets from internal networks, and a jump box securely bridges administrative access into high-security zones.

Adım Adım Çözüm

1
Analyze the operational requirements for high-security OT environments requiring total network disconnect.
Identify Air Gap as the physical isolation technique suited for SCADA/ICS safety systems.
Air gapping completely eliminates network vectors by removing physical connection paths.
2
Analyze requirements for preventing lateral movement within modern data center workload tiers.
Identify Microsegmentation as the appropriate control for granular East-West traffic restriction.
Microsegmentation uses software-defined policies to isolate individual container workloads regardless of physical topology.
3
Analyze requirements for exposing public services securely.
Identify Screened Subnet (DMZ) as the perimeter boundary control.
Screened subnets buffer public traffic between internal and external firewalls.
4
Analyze administrative security access requirements for sensitive zones.
Identify Jump Box (Bastion Host) as the controlled management transit server.
Jump boxes enforce centralized authentication, access controls, and logging for administrative sessions.

Anahtar Kavram

Secure Network Segmentation Archetypes and Traffic Control Controls
ÖncekiSayfa 10 / 21Sonraki
Security Architecture Alıştırma Soruları — CompTIA Security+ — Sayfa 10 | Examkin