Security Architecture

405 soru

Soru 301Soru

Match each Identity and Access Management (IAM) protocol to its primary architectural function in enterprise security environments.

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

Öğeler

OAuth 2.0
OpenID Connect (OIDC)
SAML 2.0
RADIUS

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

OAuth 2.0 pairs with delegated API authorization; OIDC pairs with identity authentication using JWTs over OAuth 2.0; SAML 2.0 pairs with XML-based web browser federation and SSO; RADIUS pairs with centralized AAA network access management.
Each IAM protocol serves a distinct architectural purpose: OAuth 2.0 provides delegated API authorization, OIDC adds RESTful authentication using JWTs on top of OAuth 2.0, SAML 2.0 facilitates XML-based enterprise web SSO federation, and RADIUS delivers centralized AAA for network infrastructure connection request management.

Adım Adım Çözüm

1
Identify the primary role of OAuth 2.0.
Recognize that OAuth 2.0 handles authorization and token delegation for APIs rather than user authentication.
OAuth 2.0 is an authorization framework, not an authentication protocol.
2
Identify the primary role of OpenID Connect (OIDC).
Associate OIDC with RESTful/JSON-based user authentication overlaying OAuth 2.0.
OIDC adds an identity layer (ID token in JWT format) to OAuth 2.0.
3
Identify the primary role of SAML 2.0.
Match SAML 2.0 to XML-based web SSO federation between identity providers and service providers.
SAML uses XML assertions for cross-domain browser single sign-on.
4
Identify the primary role of RADIUS.
Link RADIUS to legacy network access authentication (AAA) for VPNs and wireless networks.
RADIUS is a dedicated network access AAA protocol.

Anahtar Kavram

IAM Protocol Selection and Architectural Scoping
Soru 302Soru

A pharmaceutical enterprise has implemented a Zero Trust Architecture (ZTA) to secure access to proprietary clinical research data. During an active database session initiated via multi-factor authentication, the remote endpoint's client security agent reports that host firewall services were unexpectedly disabled. Which of the following actions best reflects the core tenets of Zero Trust in this scenario?

Cevabı ve açıklamayı göster

Cevap: The Policy Decision Point (PDP) re-evaluates the asset's dynamic trust score using telemetry and signals the Policy Enforcement Point (PEP) to alter or terminate session permissions.

Cevap

The Policy Decision Point (PDP) re-evaluates the asset's dynamic trust score using telemetry and signals the Policy Enforcement Point (PEP) to alter or terminate session permissions.
In Zero Trust Architecture, access decisions are dynamic and subject to continuous verification. When endpoint compliance degrades mid-session, host telemetry alerts the Policy Decision Point (PDP) to re-evaluate the risk score and instruct the Policy Enforcement Point (PEP) to modify or terminate the active session.

Adım Adım Çözüm

1
Analyze the security telemetry change reported during the session.
Disabling the host firewall degrades the device security posture and increases risk.
Zero Trust mandates continuous monitoring of endpoint health and compliance throughout active sessions.
2
Determine how the Zero Trust control plane processes posture changes.
The Policy Decision Point (PDP) recalculates the dynamic trust score based on incoming telemetry.
The PDP is responsible for making logical access decisions based on real-time contextual data.
3
Identify how the policy decision is operationalized at the network and application layer.
The Policy Enforcement Point (PEP) receives the updated instruction from the PDP and restricts or drops the connection.
The PEP executes session control functions based on direction from the PDP.

Anahtar Kavram

Continuous Verification and PDP/PEP Dynamic Authorization
Tahmini Süre:1m 30s
Soru 303Soru

A security architect for an enterprise organization is designing network isolation controls across various operational environments. Match each security design requirement on the left to the network segmentation mechanism on the right that best satisfies it.

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

Öğeler

Isolating legacy industrial control hardware that requires complete protection from remote network vectors and has no requirement for network communication.
Restricting East-West network traffic between individual containerized microservices hosted within the same virtualized cluster.
Providing a hardened, audited entry point for administrators to establish remote management sessions into internal infrastructure.
Placing public-facing application servers in a perimeter zone to prevent direct network traversal to internal corporate databases.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Legacy hardware isolation matches Air gap; Container microservices restriction matches Microsegmentation; Administrative entry point matches Jump box / Bastion host; Public-facing server perimeter matches Demilitarized Zone (DMZ).
Each requirement directly aligns with standard network segmentation mechanisms: Air gap provides total network detachment for highly sensitive/legacy hardware; Microsegmentation provides granular control over East-West traffic between container workloads; Jump boxes act as secure gateways for admin sessions; DMZs buffer public-facing web servers from private internal database zones.

Adım Adım Çözüm

1
Analyze the security requirement for complete isolation without external network connectivity.
Identify that an Air gap removes all physical or logical network connections, which is required for vulnerable or isolated legacy hardware.
Air gapping eliminates remote network attack vectors entirely.
2
Evaluate intra-cluster granular isolation needs between virtualized workloads.
Identify Microsegmentation as the control that governs lateral (East-West) traffic between virtual machines or containerized services.
Traditional perimeter firewalls cannot inspect or block traffic between adjacent workloads inside the same host cluster.
3
Determine the control required for secure admin access into sensitive internal segments.
Match Jump box / Bastion host as the hardened proxy system through which administrative traffic is funneled and monitored.
Jump hosts prevent direct remote access connections from reaching internal production environments.
4
Determine the control for isolating public services from internal databases.
Match Demilitarized Zone (DMZ) as the perimeter architecture isolating public web servers from internal data stores.
A DMZ restricts ingress to untrusted internet traffic while enforcing strict inspection on traffic attempting to reach internal zones.

Anahtar Kavram

Network Segmentation Mechanisms and Architecture
Soru 304Soru

A DevSecOps engineer is configuring a shared Linux compute host that executes untrusted CI/CD pipeline container images. To minimize the risk of a container process exploiting kernel vulnerabilities or escalating privileges on the underlying host operating system, which of the following controls should be implemented? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Enable user namespaces (userns) to map container root UID 0 to an unprivileged user ID on the host OS.; Apply custom SECCOMP profiles to restrict the specific Linux kernel system calls available to containerized processes.

Cevap

The host environment is secured by configuring user namespaces to map container root privilege to an unprivileged host account and applying SECCOMP profiles to limit accessible kernel system calls.
Implementing user namespaces ensures that even if a container process is compromised as root inside its runtime container, it corresponds to an unprivileged account on the host system. Applying custom SECCOMP profiles further reduces kernel exploitation vectors by enforcing a strict filter on the Linux system calls allowed for the containerized application.

Adım Adım Çözüm

1
Analyze container privilege escalation risks
Identified that containers sharing the host kernel can pose severe risks if a process running as root inside a container breaks out into the host OS.
Container processes run as root by default unless user namespaces remap root (UID 0) inside the container to an unprivileged account on the host.
2
Evaluate syscall attack surface controls
Determined that SECCOMP profiles enforce syscall restrictions directly at the Linux kernel interface.
Restricting unneeded syscalls prevents containers from executing dangerous kernel functions capable of triggering privilege escalation vulnerabilities.

Anahtar Kavram

Container Host Isolation and Kernel Hardening Controls
Soru 305Soru

A international maritime logistics enterprise operates edge storage appliances at remote port facilities to handle offline container manifest data. The security architecture team must ensure that if storage drives are physically stolen from an unattended facility, the data at rest cannot be extracted. Additionally, key lifecycle management must be centralized without relying on local site administrators to manually unlock storage volumes after a system reboot. Which of the following storage security architectures best meets these requirements?

Cevabı ve açıklamayı göster

Cevap: Self-Encrypting Drives (SEDs) integrated with an enterprise Key Management Interoperability Protocol (KMIP) server

Cevap

Self-Encrypting Drives (SEDs) integrated with an enterprise Key Management Interoperability Protocol (KMIP) server
Self-Encrypting Drives (SEDs) perform low-level hardware cryptographic operations directly on the drive controller, ensuring that data is completely inaccessible if physical drives are detached or stolen. Connecting SEDs to a centralized Key Management Interoperability Protocol (KMIP) server enables centralized key management and automated, secure authentication during remote appliance booting without requiring local administrator password entry.

Adım Adım Çözüm

1
Identify the primary security requirement for physical drive theft.
Protection of data at rest on physical storage media requires full disk or media-level encryption.
If physical drives are stolen from a remote port site, unencrypted media can be read directly on an external controller.
2
Evaluate key management constraints for unattended remote appliances.
Centralized, automated key orchestration is necessary to unlock encryption keys across remote nodes without manual local administrator intervention.
Standardizing key lifecycle management via KMIP allows central Hardware Security Modules (HSMs) or key servers to supply media encryption keys securely over network boot.
3
Select the control architecture that combines hardware-level encryption with automated key management.
Self-Encrypting Drives (SEDs) combined with a central KMIP service satisfy both hardware encryption and centralized key management.
SEDs perform transparent hardware-level cryptographic operations with negligible performance overhead and lock automatically upon loss of power or physical removal.

Anahtar Kavram

Data Protection at Rest and Centralized Storage Key Management
Soru 306Soru

A cloud security engineering team is designing an Identity and Access Management (IAM) architecture for microservices operating across multi-cloud Kubernetes environments. The architecture must enforce Zero Trust principles by replacing static API keys and long-lived service account tokens with short-lived X.509 certificates issued automatically through platform attestation rather than user credentials. Which of the following identity architecture solutions best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: Implement SPIFFE/SPIRE workload identities to issue verifiable cryptographic credentials based on node and workload attestation.

Cevap

SPIFFE/SPIRE workload identities providing short-lived cryptographic credentials via platform attestation.
SPIFFE/SPIRE (Secure Production Identity Framework for Everyone / SPIFFE Runtime Environment) is specifically engineered for workload identity architecture in heterogeneous cloud environments. It performs node and workload attestation to automatically issue short-lived, verifiable SPIFFE ID X.509 documents (SVIDs), fulfilling Zero Trust requirements for microservices without static secret management.

Adım Adım Çözüm

1
Analyze the core architectural requirement
The requirement specifies non-person workload authentication across multi-cloud clusters using short-lived cryptographic identity issued via automated platform attestation.
Static credentials and network-level trust boundaries violate Zero Trust principles in dynamic cloud-native environments.
2
Evaluate workload identity standards
SPIFFE (Secure Production Identity Framework for Everyone) defines a framework for workload identity, and SPIRE provides the implementation to attest platforms and issue short-lived X.509 SVIDs.
This establishes cryptographically verifiable workload identity without relying on human interaction or static secrets.
3
Eliminate inappropriate identity and network mechanisms
IPsec relies on perimeter/node-level security; SAML 2.0 target user browser SSO; OAuth 2.0 Implicit Grant is insecure and suited for front-end clients.
None of these alternatives provide workload-level platform attestation for containerized microservices.

Anahtar Kavram

Workload Identity and Platform Attestation in Zero Trust IAM Architecture
Soru 307Soru

An enterprise wants to allow its employees to securely sign in to multiple external cloud-based vendor applications using their central corporate identity provider, ensuring that user passwords are never transmitted to or stored by the external vendors. Which Identity and Access Management (IAM) architectural solution best fulfills this requirement?

Cevabı ve açıklamayı göster

Cevap: Federated Identity Management using Single Sign-On protocols

Cevap

Federated Identity Management using Single Sign-On protocols is the correct architectural solution.
Federated Identity Management allows organizations to establish single sign-on across separate administrative domains. Through standards like SAML 2.0 or OpenID Connect, the central Identity Provider authenticates the user locally and issues a cryptographically signed assertion token to external cloud applications, preventing credential exposure.

Adım Adım Çözüm

1
Analyze the enterprise requirement
The requirement calls for centralized identity verification across external domain boundaries without sharing sensitive passwords.
Security best practices demand establishing trust relationships with external cloud services via centralized assertions.
2
Evaluate IAM architectural solutions for cross-domain identity sharing
Federated Identity Management (using standards such as SAML or OIDC) relies on token-based assertions from an Identity Provider (IdP) to Service Providers (Relying Parties).
Tokens allow external vendors to validate user identity securely without ever receiving password credentials.

Anahtar Kavram

Federated Identity Management and Cross-Domain Trust Architecture
Tahmini Süre:45s
Soru 308Soru

A telemedicine organization is updating its infrastructure to align with Zero Trust Architecture (ZTA) principles for remote radiologists querying patient imaging databases hosted across hybrid cloud environments. The lead security architect mandates that access decisions must continuously evaluate user identity, device compliance, and real-time risk context, while separate proxy gateways enforce those authorization decisions at the resource boundary. Which of the following architectural implementations best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: Establishing a centralized Policy Decision Point (PDP) to continuously evaluate contextual trust signals and direct dedicated Policy Enforcement Points (PEPs) to grant or deny access per request

Cevap

Establishing a centralized Policy Decision Point (PDP) to continuously evaluate contextual trust signals and direct dedicated Policy Enforcement Points (PEPs) to grant or deny access per request.
Zero Trust Architecture explicitly separates control plane functions from data plane functions. The Policy Decision Point (PDP) evaluates policy, device posture, identity context, and threat intelligence to make dynamic access decisions. It then instructs the Policy Enforcement Point (PEP) situated inline near the target resource to allow, deny, or terminate specific connection sessions.

Adım Adım Çözüm

1
Identify key Zero Trust requirements from the scenario
The architecture demands dynamic evaluation of context and device health (decision logical component) separated from traffic enforcement at resource boundaries (enforcement logical component).
Zero Trust separates the control plane (PDP) from the data plane (PEP).
2
Map ZTA functional components to the requirement
The Policy Decision Point (PDP), consisting of the Policy Engine and Policy Administrator, computes trust and sends decisions to the Policy Enforcement Point (PEP) operating inline.
This guarantees per-request evaluation and explicit verification rather than implicit network-level trust.

Anahtar Kavram

Decoupling Policy Decision Points (PDP) from Policy Enforcement Points (PEP) in Zero Trust Architecture
Soru 309Soru

A municipal transit authority is deploying connected physical traffic signal controllers deployed across city intersections. The controllers transmit real-time telemetry to a central management server and receive timing synchronization updates. If an attacker gains physical access to a single controller on a street pole, the security team must prevent the attacker from moving laterally to other signal controllers on the network. Which of the following network design strategies best achieves this objective?

Cevabı ve açıklamayı göster

Cevap: Implement microsegmentation and strict access policies to isolate traffic between individual signal controllers.

Cevap

Microsegmentation and strict access policies should be implemented to restrict traffic between individual signal controllers.
Microsegmentation logically divides network environments into granular isolation zones down to individual workloads or devices. By enforcing strict access policies on East-West traffic, microsegmentation ensures that even if an attacker physically compromises a signal controller at an intersection, they cannot pivot or move laterally to other controllers on the same network segment.

Adım Adım Çözüm

1
Identify the primary security requirement in the scenario.
The requirement is preventing lateral movement (East-West traffic traversal) if a physically exposed edge device is compromised.
Physical tampering at an intersection endpoint presents a risk of pivoting across the municipal infrastructure.
2
Evaluate network design isolation strategies.
Microsegmentation creates granular boundaries down to individual device workloads, blocking lateral communications between peer devices.
Standard VLANs or perimeter-only firewalls still allow trusted communication between nodes in the same zone.
3
Select the optimal control mechanism.
Microsegmentation enforces least privilege network access between controllers.
It stops East-West lateral movement directly at the network/workload boundary.

Anahtar Kavram

Microsegmentation and East-West Traffic Isolation
Soru 310Soru

A system administrator is tasked with improving server network availability for a critical database host. The host currently has a single network cable connected to a core switch, creating a single point of failure if the switch port or cable fails. The administrator installs a second network interface card (NIC) and connects it to a separate switch. Which of the following should the administrator configure on the server operating system to combine these adapters into a fault-tolerant network connection?

Cevabı ve açıklamayı göster

Cevap: NIC teaming

Cevap

NIC teaming should be configured to group physical network cards into a single redundant interface.
NIC teaming allows multiple physical network interfaces on a host to function as a single logical network interface. In the event of a cable, port, or NIC hardware failure, network traffic automatically routes through the surviving adapter, maintaining high availability without interruption.

Adım Adım Çözüm

1
Identify the availability requirement in the scenario.
The requirement is local server network interface fault tolerance to eliminate single points of failure at the cable, port, or NIC level.
Connecting multiple NICs to separate switches requires OS-level bonding/teaming to manage active-passive or active-active traffic failover.
2
Evaluate the technology that binds network adapters for fault tolerance.
NIC teaming (also known as bond interface or IEEE 802.3ad link aggregation depending on implementation) groups multiple adapters into a virtual interface.
If one physical link loses connectivity, traffic seamlessly shifts to the remaining adapter without dropping active network sessions.
3
Differentiate network interface redundancy from storage or disaster recovery controls.
RAID protects storage disks, MPIO manages SAN storage connections, and cold sites deal with facility recovery.
Selecting NIC teaming specifically addresses the host network adapter and switch connection layer.

Anahtar Kavram

NIC Teaming and Link Redundancy
Soru 311Soru

A security engineer is redesigning the network architecture for an automated logistics center. The facility incorporates smart building controllers (HVAC, environmental sensors, and smart lighting) that must continuously transmit status metrics outbound to a cloud management service. However, corporate compliance requires that these controllers must be strictly prohibited from initiating connection requests to the internal database servers or corporate workstations hosting sensitive supply chain data. Which of the following network architecture strategies best fulfills these requirements while reducing lateral movement risk?

Cevabı ve açıklamayı göster

Cevap: Place smart building controllers into a dedicated microsegmented VLAN with firewall policies permitting restricted outbound traffic to the cloud service while blocking East-West traffic to internal corporate zones.

Cevap

Place smart building controllers into a dedicated microsegmented VLAN with firewall policies permitting restricted outbound traffic to the cloud service while blocking East-West traffic to internal corporate zones.
Placing smart controllers into a microsegmented VLAN with specific firewall egress rules satisfies both requirements: it allows outbound telemetry to the vendor's cloud service while preventing lateral (East-West) traffic to internal database servers and corporate workstations.

Adım Adım Çözüm

1
Analyze the operational and security requirements
Smart sensors require outbound (North-South) cloud communication, but must be prevented from connecting laterally (East-West) to internal enterprise assets.
Segmenting IoT and smart infrastructure limits breach blast radiuses while maintaining necessary operational connectivity.
2
Evaluate network isolation and traffic control options
Microsegmentation creates granular security boundaries around device classes, enforcing access policies that allow outbound cloud traffic while denying internal cross-zone connection requests.
Proper secure network design enforces Zero Trust principles by restricting lateral movement between distinct security tiers.

Anahtar Kavram

Network Microsegmentation and East-West Traffic Isolation
Soru 312Soru

A security architect is updating the enterprise storage protection strategy to safeguard sensitive data at rest and during access operations. Match each storage security control on the left with its primary operational mechanism on the right.

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

Öğeler

Storage Area Network (SAN) LUN Masking
Hardware Security Module (HSM)
Database Tokenization
Endpoint Data Loss Prevention (DLP)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

SAN LUN Masking maps to restricting storage volume access by host WWNs/iSCSI initiators. Hardware Security Module (HSM) maps to tamper-resistant hardware key lifecycle management. Database Tokenization maps to replacing sensitive data elements with non-sensitive surrogate tokens. Endpoint Data Loss Prevention (DLP) maps to monitoring local drive and removable media operations to prevent unauthorized data extraction.
Each storage security control fulfills a distinct architectural role: SAN LUN masking controls host-level access to SAN storage volumes, HSM safeguards root cryptographic keys in dedicated physical hardware, Tokenization obfuscates sensitive values without mathematical key ciphering, and Endpoint DLP prevents local data exfiltration.

Adım Adım Çözüm

1
Analyze storage access controls.
SAN LUN masking configures storage controllers to restrict logical unit number exposure to authorized host identifiers (WWNs/iSCSI initiators).
This enforces storage isolation in SAN environments.
2
Analyze cryptographic hardware controls.
HSM protects key management operations inside tamper-evident physical boundaries.
This prevents root key exposure or theft.
3
Analyze data protection and obfuscation controls.
Tokenization substitutes sensitive fields with non-sensitive tokens while storing mapping tables securely.
This reduces regulatory scope while preserving database formatting.
4
Analyze data loss prevention controls.
Endpoint DLP inspects local endpoints to prevent unauthorized copying of sensitive files to removable storage.
This mitigates insider threat and accidental data exfiltration.

Anahtar Kavram

Enterprise Data Protection and Storage Architecture Controls
Soru 313Soru

A security architect is designing a jump box administrative access path for a high-security internal database zone. Arrange the sequence of network traffic flows and security enforcement controls in the correct order, starting from the administrator's initial remote connection attempt and ending at the destination database server.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequence starts with external traffic entering the perimeter DMZ to contact the bastion host, followed by multi-factor authentication on the bastion host, then initiating a separate internal connection from the bastion host, and finally passing internal firewall microsegmentation checks to access the database server.
Secure network administrative access relies on a multi-tier defense-in-depth sequence: traffic first enters the management DMZ via the perimeter firewall, requires strong authentication on the jump box, originates a brand-new internal session from the jump box, and is strictly filtered by internal firewall microsegmentation rules before touching sensitive internal assets.

Adım Adım Çözüm

1
Inbound Ingress to DMZ
The initial remote session passes through the outer edge firewall and terminates at the dedicated bastion host in the DMZ segment.
Direct management traffic from external networks to internal zones must be blocked at the perimeter; all management ingress must terminate in a screened management zone.
2
Identity & Posture Validation
The administrator authenticates via MFA on the jump box to unlock management capabilities.
Security controls on the jump server ensure only authenticated administrators with valid privileges can launch internal sessions.
3
Secondary Session Initiation
A secondary, isolated connection is launched from the jump box across the internal network boundary.
Breaching protocol continuation (session break) prevents direct pass-through tunneling from external clients into core internal networks.
4
Microsegmentation Policy Enforcement
The internal firewall verifies that ingress to the database zone is restricted to the specific bastion host IP and allowed protocol/port.
Microsegmentation enforces least privilege network access, ensuring database servers only accept connections from trusted administrative jump hosts.

Anahtar Kavram

Secure Network Transit & Bastion Architecture
Soru 314Soru

An enterprise organization is deploying IoT-enabled environmental monitoring sensors throughout its server infrastructure rooms. The sensors require outbound HTTPS communication to a third-party vendor's cloud telemetry platform for automated threshold alerting. However, security policy mandates that these IoT devices must be strictly restricted to prevent lateral movement toward core internal network assets in the event a sensor is compromised. Which of the following network architecture designs best meets these security requirements while enforcing least privilege?

Cevabı ve açıklamayı göster

Cevap: Isolate the environmental sensors on a dedicated VLAN using microsegmentation policies and strict egress filtering that restricts outbound traffic exclusively to the cloud platform's endpoints.

Cevap

Placing the sensors on a dedicated VLAN governed by microsegmentation and restricted egress filtering provides the necessary network isolation and outbound connectivity.
Microsegmentation combined with a dedicated VLAN and strict egress firewalls isolates high-risk IoT devices from internal networks while allowing only necessary outbound connections to specified cloud servers.

Adım Adım Çözüm

1
Analyze functional network communication requirements
Sensors must reach external cloud endpoints over HTTPS (TCP/443).
Air-gapping or completely disabling internet egress breaks required telemetry capabilities.
2
Analyze internal threat mitigation and containment requirements
Internal lateral movement toward corporate data must be blocked.
IoT devices are frequent breach vectors and must be strictly isolated from core subnets.
3
Select network architecture control enforcing least privilege
Combine dedicated VLAN segmentation, microsegmentation policies, and strict egress filtering.
This configuration restricts East-West lateral movement and enforces explicit North-South egress traffic control.

Anahtar Kavram

Secure Network Design and Microsegmentation
Soru 315Soru

An enterprise security architect is reviewing infrastructure resilience mechanisms to ensure continuous availability and disaster recovery readiness. Match each high-availability control on the left with the operational failover behavior or risk mitigation on the right.

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

Öğeler

Active-Active Clustering
Dual-PDU Redundant Power Wiring
Geographically Dispersed Warm Site
Heartbeat-monitored Active-Passive Failover

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Active-Active Clustering matches simultaneous load distribution across online nodes. Dual-PDU Redundant Power Wiring matches protection against upstream circuit breaker power feed failures. Geographically Dispersed Warm Site matches pre-installed infrastructure requiring data restoration. Heartbeat-monitored Active-Passive Failover matches promoting a standby node upon primary signal loss.
Active-Active clustering actively distributes live production traffic across all nodes. Dual-PDU power wiring mitigates power feed line and circuit breaker failures. A warm site maintains hardware readiness but requires periodic or manual data updates. Active-Passive failover relies on heartbeat signaling to promote a standby secondary node when the primary node stops responding.

Adım Adım Çözüm

1
Analyze load distribution controls.
Active-Active clustering active state processing matches real-time workload balancing across all active nodes.
Active-Active configurations explicitly process live traffic across all available nodes concurrently.
2
Identify electrical fault tolerance controls.
Dual-PDU redundant wiring matches protection against independent electrical circuit failures.
Connecting redundant power supplies to separate PDUs prevents single utility or circuit breaker failures from downing servers.
3
Evaluate offsite disaster recovery site models.
Warm sites match pre-provisioned hardware infrastructure that requires data restoration before resuming operations.
Warm sites balance cost and recovery speed by maintaining hardware readiness while accepting delayed data sync.
4
Examine stateful failover monitoring.
Heartbeat-monitored active-passive failover matches promoting a standby node when keep-alive signals drop.
Heartbeat protocols continuously verify primary node health and automate secondary node takeover.

Anahtar Kavram

Distinguishing architectural controls for system resilience, electrical redundancy, clustering models, and recovery site operational profiles.
Soru 316Soru

An e-commerce platform requires local disk storage resilience for its transaction database host. The requirement states that if a single physical drive experiences a total hardware failure, the database must remain fully operational without service disruption or data loss while the failed hardware is replaced. Which of the following resilience controls best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: A RAID 5 array configured with hot-swappable drives

Cevap

A RAID 5 array configured with hot-swappable drives
Configuring a RAID 5 array with hot-swappable drives provides disk-level fault tolerance through distributed parity. If a single drive fails, data remains immediately accessible without system downtime, and hot-swappable hardware allows drive replacement while the system remains fully online.

Adım Adım Çözüm

1
Identify the primary operational constraint and failure domain
The requirement specifies real-time local storage fault tolerance to survive a single drive hardware failure without downtime or data loss.
Distinguishing drive failure from electrical power loss or site disasters isolates storage-level high availability as the target domain.
2
Evaluate candidate storage fault-tolerance mechanisms
RAID 5 distributes parity across multiple drives so data can be dynamically reconstructed on-the-fly during a single drive crash.
Hot-swappable drive bays permit physical disk replacement without shutting down the operational host.
3
Differentiate fault tolerance controls from backup and power controls
Daily snapshots and cold sites involve recovery downtime, while dual power supplies resolve power grid failures rather than drive failures.
Selecting RAID 5 with hot-swappable drives uniquely satisfies all scenario requirements.

Anahtar Kavram

Disk Fault Tolerance and RAID Storage Resilience
Soru 317Soru

In a Zero Trust Architecture (ZTA) implementation following NIST SP 800-207, distinct logical components handle policy decisions, enforcement, and data boundaries. Match each Zero Trust functional component on the left with its core operational responsibility on the right.

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

Öğeler

Policy Engine (PE)
Policy Administrator (PA)
Policy Enforcement Point (PEP)
Control Plane

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The Policy Engine maps to evaluating contextual risk and policy to render access decisions; the Policy Administrator maps to signaling enforcement points and issuing session credentials; the Policy Enforcement Point maps to intercepting and gating resource connections; the Control Plane maps to serving as the administrative communication network for management traffic.
NIST SP 800-207 specifies a clear separation of responsibilities within Zero Trust Architecture: the Policy Engine acts as the decision brain, the Policy Administrator serves as the control dispatcher issuing dynamic credentials, the Policy Enforcement Point mediates raw application data flows, and the Control Plane establishes the secure administrative network connecting PDP and PEP entities.

Adım Adım Çözüm

1
Identify the primary role of the Policy Engine within the Policy Decision Point (PDP).
The Policy Engine serves as the decision maker, utilizing enterprise rules and dynamic trust scores to decide if access should be granted.
Zero Trust separates the decision logic from the execution and enforcement layers.
2
Identify the operational execution role of the Policy Administrator.
The Policy Administrator translates the Policy Engine's approval into actionable commands, issuing control signals and temporary credentials.
The Policy Administrator acts as the execution controller that communicates with the enforcement points.
3
Determine where the Policy Enforcement Point (PEP) operates.
The PEP operates on the data plane, physically or logically gating subject-to-resource connection requests.
PEPs act as gatekeepers that enforce decisions passed down from the PDP.
4
Distinguish the Control Plane from the Data Plane.
The Control Plane isolates administrative signaling and component-to-component management communication from user data traffic.
Decoupling control signals from payload traffic prevents unauthorized access to management interfaces.

Anahtar Kavram

Zero Trust Architecture Logical Components (PDP, PEP, Control Plane)
Tahmini Süre:1m 30s
Soru 318Soru

An online education platform stores terabytes of static video assets on a high-throughput network-attached storage (NAS) array. To comply with data privacy standards, the organization must protect the stored media files against physical drive theft from the data center without creating CPU bottlenecks on the storage array controllers. The development team initially suggested using asymmetric RSA-4096 encryption for every file written to disk. Which storage security architecture should the security engineer recommend to meet both performance and data-at-rest confidentiality requirements?

Cevabı ve açıklamayı göster

Cevap: Deploying Self-Encrypting Drives (SEDs) using hardware-based symmetric AES encryption managed by a central key management system.

Cevap

Deploying Self-Encrypting Drives (SEDs) using hardware-based symmetric AES encryption managed by a central key management system.
The option advocating Self-Encrypting Drives (SEDs) with symmetric AES encryption is correct because SEDs perform media encryption directly within the drive controller hardware using dedicated AES chips. This guarantees data-at-rest confidentiality against physical drive theft while completely offloading cryptographic calculations from the main storage array CPUs.

Adım Adım Çözüm

1
Identify the primary operational constraint and security requirement.
The requirement calls for data-at-rest protection against physical drive theft while avoiding CPU performance bottlenecks on the storage controllers.
Bulk storage encryption must be hardware-accelerated and transparent to maintain throughput.
2
Evaluate cipher selection for bulk data encryption.
Symmetric ciphers (such as AES-256) must be used for bulk data rather than asymmetric ciphers (such as RSA).
Asymmetric ciphers carry high mathematical complexity and severe performance overhead when encrypting large media files.
3
Select the appropriate storage hardware control mechanism.
Self-Encrypting Drives (SEDs) satisfy the requirement by executing AES encryption on dedicated drive controller chips upon write and decrypting upon read.
SEDs offload cryptographic operations completely from host and storage array CPUs, providing zero performance degradation and immediate cryptographic erasure capabilities upon disk removal.

Anahtar Kavram

Data at Rest Encryption and Self-Encrypting Drives (SEDs)
Soru 319Soru

An enterprise security architecture team is designing an automated identity mechanism to allow microservices running on an Amazon Web Services (AWS) Kubernetes cluster to securely request data from resources hosted on Google Cloud Platform (GCP). The solution must eliminate static, long-lived service account access keys, provide automated credential rotation, and cryptographically establish workload identity trust across cloud providers. Which of the following Identity and Access Management (IAM) architectural solutions best meets these requirements?

Cevabı ve açıklamayı göster

Cevap: Configure Workload Identity Federation using OpenID Connect (OIDC) to exchange AWS-issued short-lived identity tokens for temporary GCP access tokens.

Cevap

Configure Workload Identity Federation using OpenID Connect (OIDC) to exchange AWS-issued short-lived identity tokens for temporary GCP access tokens.
Workload Identity Federation allows external workloads (such as Kubernetes pods in AWS) to authenticate to cloud providers (such as GCP) by leveraging OpenID Connect (OIDC). The requesting workload presents a short-lived, signed JSON Web Token (JWT) issued by its native OIDC identity provider, which GCP validates against a configured trust relationship before issuing temporary GCP IAM credentials. This eliminates the necessity for static secret storage, key rotation management, and long-lived credential risks.

Adım Adım Çözüm

1
Identify key architectural requirements from scenario
Requirements are: cross-cloud machine-to-machine authentication, elimination of static/long-lived access keys, automated rotation, and short-lived credential issuance.
Security architecture in multi-cloud environments must avoid static API keys due to risks of credential exposure and key management overhead.
2
Evaluate workload identity federation mechanisms
Workload Identity Federation utilizes standard OIDC/OAuth2 protocols to allow GCP to trust identity tokens signed by the AWS OIDC provider.
This establishes cryptographically verifiable trust and yields short-lived, temporary access tokens specifically bound to the requesting workload.
3
Eliminate non-viable and misaligned architectural approaches
IPsec VPNs only secure network transport and retain static keys; SAML SSO targets interactive user sessions; WAF injection misapplies inline application filtering to identity management.
Only federated OIDC token exchange fulfills both the Zero Trust identity paradigm and automated machine-to-machine access requirements.

Anahtar Kavram

Workload Identity Federation across Multi-Cloud Environments
Tahmini Süre:2m 0s
Soru 320Soru

A cloud-native software enterprise is implementing Zero Trust Architecture (ZTA) principles across its microservices platform to prevent lateral movement following a potential system compromise. Which of the following implementation strategies best adheres to Zero Trust principles for service-to-service communication within the internal cluster?

Cevabı ve açıklamayı göster

Cevap: Enforcing mutual TLS with explicit workload identity verification and continuous policy authorization for every request, regardless of network segment.

Cevap

Enforcing mutual TLS with explicit workload identity verification and continuous policy authorization for every request, regardless of network segment.
Zero Trust Architecture operates on the principles of assuming breach, explicitly verifying every access request, and applying least privilege. Enforcing mutual TLS with cryptographically verifiable workload identities alongside per-request authorization ensures that internal communication is authenticated and authorized dynamically regardless of physical or logical network position.

Adım Adım Çözüm

1
Analyze the core tenets of Zero Trust Architecture (ZTA).
ZTA establishes that no connection or request is inherently trusted based solely on its network location inside the perimeter.
Systems must assume breach and continuously evaluate access controls for every transaction.
2
Evaluate service-to-service communication requirements.
Each microservice interaction must authenticate identity (e.g., via mTLS x509 certificates) and evaluate dynamic authorization decisions (Policy Enforcement / Decision Points).
This prevents an attacker who compromises one service from freely moving laterally across internal microservices.

Anahtar Kavram

Zero Trust Architecture - Explicit Verification and Continuous Authentication
Tahmini Süre:1m 30s
ÖncekiSayfa 16 / 21Sonraki
Security Architecture Alıştırma Soruları — CompTIA Security+ — Sayfa 16 | Examkin