Security Architecture

405 soru

Soru 261Soru

A fintech platform is designing its microservices-based API infrastructure. The mobile application client must request access to user data across multiple independent backend services on behalf of authenticated users. The architecture requires that microservices independently verify scoped permissions statelessly without querying a central authentication service on every request, while avoiding exposure of user credentials. Which of the following identity and access management architecture designs best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: Implement an OAuth 2.0 authorization server that issues digitally signed JSON Web Tokens (JWTs) carrying user scopes and claims for decentralized verification by downstream microservices.

Cevap

Implement an OAuth 2.0 authorization server that issues digitally signed JSON Web Tokens (JWTs) carrying user scopes and claims for decentralized verification by downstream microservices.
The correct solution uses an OAuth 2.0 authorization server issuing digitally signed JSON Web Tokens (JWTs). In a microservices architecture, JWTs allow individual microservices to perform stateless token verification using public key cryptography while evaluating authorization scopes directly from the payload without querying a central server.

Adım Adım Çözüm

1
Analyze the core architectural requirements
Identified the need for delegated authorization, stateless verification at the microservice level, fine-grained access control (scopes), and protection of user credentials.
Microservices require lightweight, scalable authorization that scales independently without centralized bottlenecks.
2
Evaluate protocol suitability for microservice API security
OAuth 2.0 paired with JSON Web Tokens (JWTs) provides token-based delegated authorization where tokens are self-contained and digitally signed by the authorization server.
JWTs contain claims and scopes embedded directly in the payload, allowing each backend service to verify the signature using the authorization server's public key statelessly.
3
Eliminate inappropriate architectural designs
Perimeter IP whitelisting relies on network trust, RADIUS/LDAP lookups add synchronous central bottlenecks, and SAML 2.0 is designed primarily for web browser authentication flows.
These alternatives fail to meet Zero Trust, performance, or API design constraints.

Anahtar Kavram

Stateless Delegated API Authorization with OAuth 2.0 and Signed JWTs
Soru 262Soru

A security architect is designing a high-availability infrastructure for an enterprise core database server connected to a Storage Area Network (SAN) using dual Host Bus Adapters (HBAs) connected across separate SAN fabrics. During failure simulation testing, disconnecting one fiber channel link caused the database operating system to freeze due to input/output timeouts rather than redirecting I/O operations through the secondary healthy storage fabric. Which of the following operating system level capabilities should the architect configure to enable seamless storage path failover and traffic load distribution?

Cevabı ve açıklamayı göster

Cevap: Multipath I/O (MPIO) software with active-active path management

Cevap

Multipath I/O (MPIO) software with active-active path management
Multipath I/O (MPIO) provides operating system level fault tolerance and load balancing across redundant physical paths (such as host bus adapters and switches) connecting a server to a storage array. When configured, MPIO masks multiple physical storage paths as a single logical drive and diverts block traffic automatically if one path experiences a cable or port failure.

Adım Adım Çözüm

1
Analyze the technical scenario requirements and underlying failure condition.
The server has physical hardware redundancy (dual HBAs and redundant SAN fabrics), but the operating system fails to recognize and switch between redundant storage paths when one path fails.
Without host-level multipathing logic, the operating system treats each physical connection as a separate storage device or locks I/O queues when a single path drops.
2
Evaluate candidate high-availability storage and network technologies against SAN HBA path redundancy.
Multipath I/O (MPIO) is specifically designed to abstract redundant storage connections (Fibre Channel/iSCSI) into a single logical device while performing continuous path monitoring, automatic failover, and load balancing.
MPIO integrates directly into the storage driver stack of the operating system to prevent I/O timeouts and kernel freezes.
3
Differentiate MPIO from network aggregation, remote disaster recovery, and compute clustering.
LACP handles network layer interfaces rather than HBA storage buses, synchronous site replication targets disaster recovery objectives, and active-passive clustering manages node failover rather than internal storage bus path management.
Only MPIO addresses the specific fault boundary described in the scenario.

Anahtar Kavram

Multipath I/O (MPIO) and Storage Path Resilience
Soru 263Soru

A security engineer is designing a secure storage architecture for an enterprise financial organization migrating sensitive customer records to a public cloud object storage environment. To meet compliance standards and protect data at rest against unauthorized cloud administrator access and physical disk theft, which of the following controls should the engineer implement? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Client-side bulk data encryption using symmetric AES-256 with key management integrated into a dedicated Hardware Security Module (HSM); Storage-integrated Data Loss Prevention (DLP) policies paired with automated data classification tags

Cevap

The correct controls to implement are client-side bulk data encryption using symmetric AES-256 with HSM key management, and storage-integrated Data Loss Prevention (DLP) policies paired with automated data classification tags.
Client-side symmetric encryption (AES-256) backed by an HSM ensures high-speed bulk data protection and complete customer key ownership before data reaches public cloud storage. Storage-integrated DLP with automated classification enforces content-aware authorization and exfiltration monitoring across the storage repository.

Adım Adım Çözüm

1
Analyze storage encryption requirements for bulk data at rest.
Identify that client-side bulk storage protection requires fast symmetric encryption (AES-256) managed via dedicated key management hardware (HSM) to protect data before it reaches third-party infrastructure.
Symmetric ciphers provide efficient bulk encryption, while client-side HSM key management prevents unauthorized access by cloud administrators or compromised physical storage media.
2
Analyze data discovery and access monitoring controls.
Identify that Data Loss Prevention (DLP) coupled with data classification tags prevents unauthorized exfiltration and enforces policy compliance on sensitive customer records.
DLP mechanisms contextualize data based on sensitivity labels and monitor access patterns within the storage architecture.
3
Evaluate remaining choices against cryptographic and security control principles.
Reject asymmetric RSA for bulk storage due to performance constraints, reject hashing for non-repudiation because hashes lack origin proof/digital signatures, and reject WAF as a storage sector repair tool because WAFs are application-layer preventive filters.
Aligns with core principles regarding cipher selection, AAA/integrity mechanisms, and security control functional classification.

Anahtar Kavram

Data Protection and Storage Security Architecture
Soru 264Soru

A security administrator is reviewing the automated failover process for a high-availability cluster to ensure continuous operations during a hardware failure. What is the correct order of steps the cluster system takes when a primary node fails?

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence starts with detecting the node failure via heartbeat loss, followed by fencing the primary node to prevent split-brain condition, promoting the secondary node and assigning the virtual IP, and concluding with service initialization and client traffic resumption.
In high-availability clustering, failover must strictly proceed from failure detection (heartbeat loss) to node fencing (isolation), followed by role promotion/virtual IP takeover, and finally service resumption. Fencing must occur before promotion to protect data integrity against split-brain scenarios.

Adım Adım Çözüm

1
Detect primary node failure
Heartbeat loss alerts the cluster that the primary node is offline or unreachable.
Monitoring tools must detect an outage before initiating automated failover.
2
Isolate the failed primary node
Fencing (such as STONITH) cuts off the unresponsive node's access to shared resources.
Prevents split-brain scenarios where two nodes simultaneously act as primary and corrupt shared data.
3
Promote standby node and reassign virtual network identities
The secondary node changes state to active and rebinds the virtual IP address to its interface.
Ensures network traffic directed to the cluster IP gets routed to the new active node.
4
Resume application processing
Services start up completely and handle incoming user sessions.
Completes the failover procedure to achieve high availability.

Anahtar Kavram

High-Availability Automated Failover Sequence and Fencing
Soru 265Soru

A financial enterprise is migrating its identity architecture to a cloud-hosted Identity Provider (IdP) while retaining a mission-critical legacy on-premises web application. The legacy application relies strictly on Integrated Windows Authentication (Kerberos) for user authentication and cannot be modified to support modern web standards such as SAML 2.0 or OpenID Connect (OIDC). Remote employees connect from unmanaged endpoints without direct line-of-sight network connectivity to internal Active Directory Domain Controllers. Which architectural pattern should the security team implement to provide secure single sign-on (SSO) to this application while maintaining a Zero Trust security posture?

Cevabı ve açıklamayı göster

Cevap: Deploy an Identity-Aware Proxy (IAP) combined with an on-premises application connector that performs Kerberos Constrained Delegation (KCD) after verifying modern IdP claims.

Cevap

Deploying an Identity-Aware Proxy (IAP) with an on-premises connector that executes Kerberos Constrained Delegation (KCD) allows modern IdP authentication for remote users while translating claims into native Kerberos tickets internally without broad network exposure.
An Identity-Aware Proxy (IAP) pattern combined with Kerberos Constrained Delegation (KCD) solves the challenge of supporting legacy Kerberos authentication for remote users without compromising Zero Trust principles. The remote user authenticates against the modern cloud Identity Provider using strong controls (such as MFA). Upon successful authentication, the IAP connector residing within the internal network receives a secure signal and uses KCD to request a Kerberos service ticket on behalf of the user from Active Directory, delivering it to the legacy application.

Adım Adım Çözüm

1
Analyze legacy application requirements
Identified Kerberos (Integrated Windows Authentication) as an unalterable protocol dependency that requires valid Active Directory Kerberos tickets for session establishment.
Legacy applications lacking SAML/OIDC support cannot consume modern claims directly.
2
Evaluate remote access and Zero Trust boundary constraints
Remote endpoints are unmanaged and lack direct line-of-sight to Domain Controllers, ruling out traditional perimeter network extension mechanisms.
Exposing internal domain services directly to remote endpoints breaches Zero Trust segmentation boundaries.
3
Select the appropriate IAM architectural bridge mechanism
An Identity-Aware Proxy (IAP) authenticates the remote client via the cloud IdP using modern standards, and an internal agent uses Kerberos Constrained Delegation (KCD) to impersonate the authenticated user to the backend web server.
KCD bridges modern identity federation protocols with legacy Windows authentication seamlessly and securely.

Anahtar Kavram

Identity and Access Management Architecture - Legacy SSO Integration & Zero Trust Proxy Patterns
Soru 266Soru

An enterprise security architect is categorizing modern enterprise workloads according to cloud service models and deployment architectures. Match each system requirement on the left with its corresponding cloud model on the right.

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

Öğeler

Deploying a third-party customer relationship management portal where the vendor handles all infrastructure maintenance, operating system patching, and software updates.
Developing a microservices web API using managed runtime engines and databases, where internal developers manage application code while the provider handles OS maintenance.
Migrating legacy database workloads to cloud virtual machines where the internal team manages guest OS hardening, middleware configuration, and firewall rules.
Hosting a shared threat intelligence dataset restricted exclusively to member financial regulatory agencies with identical compliance requirements.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings are: 1) Vendor-managed software portal matches Software as a Service (SaaS). 2) Custom code on managed runtime engines matches Platform as a Service (PaaS). 3) Virtual machine migration with customer OS patching matches Infrastructure as a Service (IaaS). 4) Shared dataset restricted to industry peer agencies matches Community Cloud.
The correct pairings align with the cloud shared responsibility framework: fully outsourced software application delivery corresponds to SaaS, developer control over code on managed runtimes corresponds to PaaS, customer management of virtual machine operating systems and network settings corresponds to IaaS, and shared infrastructure among specific peer entities corresponds to Community Cloud.

Adım Adım Çözüm

1
Analyze the operational responsibilities associated with each system requirement.
Differentiate between infrastructure control, application runtime control, software consumption, and tenant access scope.
Cloud service models define the division of maintenance responsibilities between provider and customer, whereas cloud deployment models specify resource sharing boundaries.
2
Pair complete vendor application administration with SaaS.
The requirement describing complete vendor software and infrastructure delivery maps to Software as a Service.
Under SaaS, users consume completed application features without managing lower-level technical components.
3
Pair custom application code running on abstracted environments with PaaS.
The requirement for managing code without maintaining the guest operating system maps to Platform as a Service.
PaaS isolates developers from system software administration while providing tools to deploy custom code.
4
Pair virtual machine guest OS hardening and firewall administration with IaaS.
The scenario where the internal team controls guest operating systems and middleware maps to Infrastructure as a Service.
IaaS provides raw virtualized compute and storage capabilities, placing all operating system and software stack responsibilities on the client.
5
Pair multi-tenant infrastructure restricted to specific peer organizations with Community Cloud.
The shared dataset limited to member regulatory agencies maps to Community Cloud.
Community clouds cater to closed groups with shared missions, regulatory constraints, and security standards.

Anahtar Kavram

Cloud Service and Deployment Model Categorization
Tahmini Süre:1m 30s
Soru 267Soru

An enterprise security architect is evaluating advanced identity and access management (IAM) architectural components to enforce Zero Trust principles and streamline operations across a hybrid enterprise environment. Match each IAM architectural pattern to the specific security or operational requirement it is designed to address.

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

Öğeler

Continuous Access Evaluation Profile (CAEP) / Shared Signals Framework
System for Cross-domain Identity Management (SCIM)
Privileged Access Management (PAM) with Just-In-Time (JIT) Access
OAuth 2.0 Mutual-TLS (mTLS) Client Authentication and Certificate-Bound Access Tokens

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Continuous Access Evaluation Profile (CAEP) matches real-time session revocation across federated relying parties. System for Cross-domain Identity Management (SCIM) matches automated account lifecycle provisioning across SaaS applications. Privileged Access Management (PAM) with Just-In-Time (JIT) access matches eliminating standing administrative privileges via ephemeral credentials. OAuth 2.0 mTLS client authentication and certificate-bound access tokens matches mitigating token replay attacks by cryptographically binding access tokens to transport connections.
Each IAM architecture pattern is aligned to its primary security function: CAEP provides event-driven continuous session re-evaluation; SCIM standardizes automated cross-domain identity lifecycle management; PAM with JIT provisions ephemeral privileges to eliminate standing access; and OAuth 2.0 mTLS cryptographically binds access tokens to client transport connections to prevent replay attacks.

Adım Adım Çözüm

1
Analyze the requirement for mid-session revocation upon security triggers.
Identify CAEP / Shared Signals Framework, which continuously passes telemetry between IdPs and RPs to terminate sessions dynamically.
Standard SAML/OIDC access tokens are stateless and valid until expiration; CAEP addresses this limitation by broadcasting security events out-of-band.
2
Analyze the requirement for automated provisioning/deprovisioning across SaaS apps.
Identify SCIM as the standard protocol for schema-based user identity lifecycle management.
SCIM standardizes RESTful APIs for managing users and groups across different identity domains.
3
Analyze the requirement to eliminate standing administrative privileges.
Identify PAM with JIT Access, which provisions ephemeral credentials only when required for approved operations.
Standing access increases attack surface; JIT access enforces temporary privilege granting.
4
Analyze the requirement to protect API communication against token replay attacks.
Identify OAuth 2.0 mTLS / Certificate-Bound Tokens, which associate the access token with the client's TLS client certificate.
Sender-constrained tokens prevent attackers who capture a bearer token from using it on a different TLS connection.

Anahtar Kavram

Advanced Enterprise IAM Architecture and Protocols
Soru 268Soru

A financial technology organization is deploying a multi-tier payment processing service using a managed Platform as a Service (PaaS) database solution provided by a cloud vendor. Under the cloud shared responsibility model, which of the following security tasks remains the exclusive responsibility of the organization's engineering team?

Cevabı ve açıklamayı göster

Cevap: Configuring database user access policies and managing data classification and encryption controls

Cevap

Configuring database user access policies and managing data classification and encryption controls is the customer's responsibility in a PaaS deployment.
Under the cloud shared responsibility model for Platform as a Service (PaaS), the cloud service provider manages the physical hardware, network infrastructure, hypervisor, operating system, and database engine maintenance. The customer remains responsible for securing its data, configuring access permissions, implementing data classification, and enforcing appropriate data-at-rest encryption settings.

Adım Adım Çözüm

1
Identify the cloud service model referenced in the scenario.
The deployment utilizes Platform as a Service (PaaS).
The responsibility division between the customer and provider depends directly on whether the service model is IaaS, PaaS, or SaaS.
2
Analyze the division of responsibility for PaaS deployments.
The Cloud Service Provider manages the hardware, network infrastructure, hypervisor, host OS, and database engine maintenance, while the customer manages data schemas, user permissions, and application configuration.
PaaS abstracts lower-level infrastructure management away from the customer.
3
Evaluate the options against customer responsibilities.
Managing data classification, database user access controls, and encryption configuration remains entirely with the customer.
The customer always owns and retains security responsibility for its data across all cloud service models.

Anahtar Kavram

Cloud Shared Responsibility Model in PaaS
Soru 269Soru

An enterprise organization installs two independent Internet Service Provider (ISP) lines connected to a perimeter router. If the primary connection experiences an outage, network traffic immediately routes through the secondary line to prevent network disruption. Which of the following resilience concepts is best demonstrated in this scenario?

Cevabı ve açıklamayı göster

Cevap: Link redundancy

Cevap

Link redundancy
Link redundancy involves deploying multiple connection pathways so that if one provider or physical line fails, traffic automatically fails over to an operational link, eliminating single points of failure for network connectivity.

Adım Adım Çözüm

1
Analyze the operational objective in the scenario.
The goal is to prevent network outages by establishing multiple independent internet connections.
The enterprise needs uninterrupted connectivity if a single provider connection fails.
2
Evaluate the architectural control deployed.
Installing dual ISP connections introduces redundant connectivity paths at the perimeter.
Redundancy ensures there is no single point of failure for internet routing.

Anahtar Kavram

Redundancy and High Availability Controls
Soru 270Soru

A financial services organization maintains an on-premises datacenter hosting a critical legacy mainframe database and a public cloud environment running web microservices. The organization must allow cloud microservices to query specific API endpoints on the mainframe without exposing the mainframe's on-premises subnet to the entire cloud Virtual Private Cloud (VPC) and without allowing lateral East-West traffic if a cloud service is compromised. Which secure network design approach best achieves this requirement?

Cevabı ve açıklamayı göster

Cevap: Configuring private endpoint services to publish only the specific mainframe API interface directly into the cloud VPC via dedicated virtual private connections.

Cevap

Configuring private endpoint services to publish only the specific mainframe API interface directly into the cloud VPC via dedicated virtual private connections.
Publishing the mainframe API through private endpoint technology provides granular service-level microsegmentation. It enables cloud microservices to interact exclusively with the designated API interface over a private connection without exposing the surrounding internal network or granting routing access to other on-premises systems.

Adım Adım Çözüm

1
Analyze the access requirement between cloud microservices and the legacy mainframe.
Real-time API access is required, but network exposure must be strictly limited to the targeted service.
Broad subnet-to-subnet connectivity increases attack surface and lateral movement risks.
2
Evaluate segmentation mechanisms for hybrid cloud connectivity.
Private endpoints (such as Cloud PrivateLink) map a specific service endpoint to a private IP within the VPC without creating a full network route.
This enforces microsegmentation by isolating network access strictly to the required application port and interface.

Anahtar Kavram

Hybrid Cloud Microsegmentation and Private Endpoints
Tahmini Süre:1m 15s
Soru 271Soru

A high-precision robotics enterprise is implementing Zero Trust Architecture (ZTA) controls for remote field engineers accessing edge industrial control systems. An engineer successfully authenticates and establishes an active session to deploy firmware. Ten minutes into the session, real-time endpoint telemetry alerts the system that the engineer's workstation has disabled its local host firewall and initiated an unverified concurrent wireless network connection, severely degrading its dynamic security posture score. Which of the following actions should the Policy Decision Point (PDP) execute to maintain Zero Trust tenets?

Cevabı ve açıklamayı göster

Cevap: Signal the Policy Enforcement Point (PEP) to immediately revoke or restrict access to the active session based on continuous, real-time evaluation of the endpoint's degraded trust score.

Cevap

Signal the Policy Enforcement Point (PEP) to immediately revoke or restrict access to the active session based on continuous, real-time evaluation of the endpoint's degraded trust score.
Under Zero Trust Architecture (ZTA) principles (such as NIST SP 800-207), access is continuously re-evaluated based on real-time threat intelligence and endpoint security posture telemetry. When an endpoint's posture degrades mid-session (such as disabling a host firewall or establishing an untrusted connection), the Policy Decision Point (PDP) must dynamically re-evaluate trust and command the Policy Enforcement Point (PEP) to restrict or terminate the active access session.

Adım Adım Çözüm

1
Analyze the incident context against Zero Trust Architecture principles.
Identified that endpoint security posture degraded during an active session after initial authentication.
Zero Trust tenets dictate that trust is never implicit and must be continuously evaluated based on real-time telemetry.
2
Evaluate the architectural roles of the Policy Decision Point (PDP) and Policy Enforcement Point (PEP).
The PDP makes access decisions based on dynamic contextual signals, while the PEP enforces those decisions at the data plane.
The PDP must continuously synthesize telemetry signals (such as host firewall status and network connections) to determine ongoing authorization.
3
Select the response that correctly enforces continuous dynamic verification.
Instructing the PEP to dynamically restrict or terminate the session upon posture degradation aligns directly with ZTA standards.
Static session persistence, VPN redirection, or indiscriminate credential deletion fail to satisfy continuous dynamic policy decision requirements.

Anahtar Kavram

Continuous Verification and Dynamic Context-Based Policy Enforcement in Zero Trust Architecture
Tahmini Süre:2m 0s
Soru 272Soru

An enterprise security architect is designing an Identity and Access Management (IAM) framework to integrate a newly acquired subsidiary into the organization's cloud identity infrastructure. The solution must provide cross-domain web-based federated Single Sign-On (SSO) for web applications, automate real-time user identity lifecycle provisioning and deprovisioning between the Identity Provider (IdP) and third-party SaaS platforms, and align strictly with Zero Trust architecture principles. Which of the following architectural standards and protocols should the architect deploy to fulfill these requirements? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Security Assertion Markup Language (SAML) 2.0 to enable cross-domain web browser federated authentication; System for Cross-domain Identity Management (SCIM) 2.0 to automate user account lifecycle provisioning and synchronization across platforms

Cevap

The architect must deploy Security Assertion Markup Language (SAML) 2.0 for federated web Single Sign-On and System for Cross-domain Identity Management (SCIM) 2.0 for automated user account lifecycle provisioning.
To achieve modern, secure IAM architecture in a hybrid Zero Trust enterprise, SAML 2.0 provides standard XML-based security assertions for cross-domain web federated authentication. Simultaneously, SCIM 2.0 provides an open RESTful specification specifically tailored to streamline and automate identity lifecycle management (provisioning, updates, and offboarding) across disparate cloud application ecosystems.

Adım Adım Çözüm

1
Analyze the web federated Single Sign-On requirement
Identify SAML 2.0 (or OIDC) as the standard protocol for cross-domain web application authentication federations.
SAML 2.0 passes security assertions containing authentication state between the Identity Provider and Service Provider.
2
Analyze the automated account lifecycle provisioning requirement
Identify SCIM 2.0 as the open standard REST API protocol for identity provisioning.
SCIM standardizes schema objects and endpoints to automate creating, updating, and deprovisioning user profiles across cloud service boundaries.
3
Evaluate the remaining options against Zero Trust principles and AAA fundamentals
Reject legacy network perimeter trust controls (RADIUS over IPsec) and misuse of authorization frameworks (OAuth 2.0 without identity layers).
Zero Trust rejects implicit network-level trust, and OAuth 2.0 handles access authorization rather than identity authentication.

Anahtar Kavram

Identity Federation Protocols (SAML/OIDC) and Automated Identity Provisioning Standards (SCIM)
Soru 273Soru

Match each Identity and Access Management (IAM) protocol or standard to its primary architectural function in an enterprise environment.

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

Öğeler

SAML 2.0
OAuth 2.0
SCIM
Kerberos

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

SAML 2.0 matches XML-based web SSO federation; OAuth 2.0 matches token-based API authorization delegation; SCIM matches automated identity provisioning and account lifecycle management; Kerberos matches ticket-based internal domain authentication via a KDC.
Each IAM protocol serves a distinct architectural layer: SAML 2.0 manages XML web SSO federation; OAuth 2.0 provides token-based API authorization; SCIM automates identity profile provisioning across cloud apps; and Kerberos performs ticket-based domain authentication.

Adım Adım Çözüm

1
Identify the primary purpose of SAML 2.0.
SAML 2.0 handles federated web Single Sign-On (SSO) using XML assertions between an IdP and SP.
SAML is an enterprise federation standard for web application authentication.
2
Identify the primary purpose of OAuth 2.0.
OAuth 2.0 delegates API access permissions using authorization access tokens.
OAuth 2.0 focuses on authorization and token delegation rather than authentication.
3
Identify the primary purpose of SCIM.
SCIM standardizes REST/JSON user profile creation, updating, and deprovisioning.
SCIM automates cross-system user identity sync across cloud services.
4
Identify the primary purpose of Kerberos.
Kerberos handles ticket-based domain authentication using a Key Distribution Center (KDC).
Kerberos is the default protocol for local directory infrastructure like Active Directory.

Anahtar Kavram

Identity and Access Management Architecture Protocols
Soru 274Soru

A security administrator is hardening a container runtime environment hosting third-party microservices on a shared host node. To minimize the blast radius of a potential container exploit, the administrator needs to enforce strict privilege boundary controls on container processes. Which TWO of the following security configurations should be implemented to meet these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Drop unnecessary Linux kernel capabilities, such as CAP_SYS_ADMIN, from the container execution profile.; Configure the container root filesystem to mount as read-only and direct writable operations to volatile memory mounts.

Cevap

The correct security configurations are dropping unnecessary Linux kernel capabilities (such as CAP_SYS_ADMIN) from the container runtime profile, and configuring the container root filesystem to mount as read-only while directing transient write operations to volatile memory mounts.
Dropping unneeded Linux kernel capabilities restricts system calls available to containerized processes, preventing a compromised process from carrying out administrative operations on the shared host kernel. Additionally, setting container root filesystems to read-only ensures immutability during runtime, blocking malicious file modifications and restricting necessary transient writes to temporary memory mounts.

Adım Adım Çözüm

1
Evaluate container privilege restrictions on the shared host kernel.
Identify that removing unneeded Linux capabilities (e.g., CAP_SYS_ADMIN) restricts containerized process rights and reduces host attack surface.
Containers share the underlying host OS kernel, so limiting kernel capabilities prevents container processes from performing unauthorized administrative actions on the host.
2
Assess storage immutability controls for runtime containers.
Determine that mounting the root filesystem as read-only prevents file tampering and persistence of exploit payloads.
Enforcing a read-only root filesystem creates immutable container instances where temporary write operations are isolated to temporary memory mounts (tmpfs).
3
Verify and discard incorrect container isolation and network assumptions.
Recognize that standard containers do not use hypervisor hardware isolation and internal container traffic requires continuous microsegmentation.
Containers utilize kernel features (namespaces and control groups) rather than virtual machine hypervisors, and Zero Trust dictates that internal bridge traffic must not bypass security checks.

Anahtar Kavram

Container Runtime Hardening and Privilege Boundary Controls
Soru 275Soru

A network security architect is establishing ingress and zone traversal inspection controls for a public-facing e-commerce platform. The architecture requires multi-tiered network segmentation to isolate external web traffic from sensitive internal backend databases. In what order should inbound network traffic pass through these security controls and network zones, starting from initial external ingress to the final destination in the isolated database zone?

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence for inbound traffic traversal begins at the Perimeter Edge Router with Anti-DDoS Filtering, moves to the Screened Subnet (DMZ) Web Application Firewall (WAF), passes through the Internal Next-Generation Firewall (NGFW) Enforcement Boundary, and completes at the Database Zone Microsegmentation Gateway.
In a defense-in-depth architecture, external traffic must be inspected in progressive layers of increasing security. Traffic first hits the perimeter edge router for high-volume network filtering, enters the Screened Subnet (DMZ) WAF for web application inspection, crosses the internal firewall boundary to reach application services, and finally passes through microsegmentation controls protecting the high-value database zone.

Adım Adım Çözüm

1
Filter network-layer threats at the external entry point
Volumetric DDoS traffic and spoofed IP packets are blocked at the perimeter edge router before reaching internal services.
Perimeter routers protect edge infrastructure from being overwhelmed by raw network traffic.
2
Perform application-layer payload inspection in the public-facing DMZ
Web traffic is decrypted and inspected by the Web Application Firewall (WAF) in the screened subnet for web vulnerabilities such as SQL injection or XSS.
Public-facing web services must terminate in a DMZ so untrusted external sessions never reach internal networks directly.
3
Enforce network boundary controls between DMZ and internal application servers
The internal NGFW validates stateful traffic rules allowing only authorized web application requests into the internal application tier.
An internal boundary control prevents compromised DMZ hosts from directly traversing into sensitive enterprise network segments.
4
Apply microsegmentation policy at the high-security database tier
The microsegmentation gateway isolates database servers and ensures only approved application server nodes can communicate using specific database ports.
Microsegmentation enforces zero trust granularity around high-value backend data assets.

Anahtar Kavram

Multi-tier network segmentation and defense-in-depth traffic flow inspection
Soru 276Soru

An e-commerce enterprise is deploying an automated cloud storage repository for sensitive database backups containing customer personally identifiable information (PII). Regulatory compliance mandates that all bulk data must be encrypted at rest with high throughput, while key lifecycle management must be secured by a dedicated hardware root of trust to prevent key extraction. Which architecture best fulfills both performance and key protection requirements?

Cevabı ve açıklamayı göster

Cevap: Encrypt bulk backups using symmetric Data Encryption Keys (DEKs) wrapped by Key Encryption Keys (KEKs) managed inside a Hardware Security Module (HSM).

Cevap

Encrypt bulk backups using symmetric Data Encryption Keys (DEKs) wrapped by Key Encryption Keys (KEKs) managed inside a Hardware Security Module (HSM).
The correct answer utilizes envelope encryption. Bulk backup data is encrypted rapidly using symmetric Data Encryption Keys (DEKs), while the DEKs themselves are encrypted (wrapped) by Key Encryption Keys (KEKs) maintained securely inside a tamper-resistant Hardware Security Module (HSM). This architecture balances high-speed bulk data processing with rigid, hardware-enforced key governance.

Adım Adım Çözüm

1
Analyze bulk data performance requirements
Bulk storage encryption requires high-speed symmetric ciphers (such as AES) rather than asymmetric encryption.
Symmetric encryption provides high throughput necessary for large database backup payloads.
2
Evaluate key protection and root-of-trust requirements
Key Encryption Keys (KEKs) should be stored and processed within a dedicated Hardware Security Module (HSM).
An HSM provides a tamper-resistant hardware root of trust that protects master keys from unauthorized extraction.
3
Synthesize the complete key governance model
Envelope encryption (wrapping symmetric DEKs with HSM-protected KEKs) satisfies both performance and security constraints.
Envelope encryption isolates key management from bulk data processing, meeting both operational efficiency and regulatory standards.

Anahtar Kavram

Envelope encryption and Hardware Security Module (HSM) key protection architecture
Soru 277Soru

An enterprise e-commerce organization is migrating its real-time product recommendation system to a serverless Function-as-a-Service (FaaS) architecture hosted by a public cloud service provider (CSP). Which TWO of the following security tasks remain the direct responsibility of the enterprise organization under the cloud shared responsibility model?

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

Cevabı ve açıklamayı göster

Cevap: Validating application source code security and implementing function-level API access authorization controls.; Configuring data classification tags and setting identity-based access policies for database repositories accessed by the function.

Cevap

The enterprise customer is responsible for writing secure application source code, enforcing API access authorization logic, classifying sensitive data, and managing access policies for database repositories connected to the serverless function.
Under the cloud shared responsibility model for serverless Function-as-a-Service (FaaS) deployments, the cloud service provider abstracts and manages the underlying hardware, hypervisors, host operating systems, and execution runtimes. The enterprise customer retains full responsibility for securing their custom application code, implementing API authorization controls, classifying data, and setting granular access management policies for any connected data storage repositories.

Adım Adım Çözüm

1
Analyze the cloud service model presented in the scenario.
The scenario specifies Function-as-a-Service (FaaS), which is a serverless execution model where the cloud provider manages infrastructure, hardware, OS patching, and execution runtime.
Identifying the cloud service model is essential for determining the scope of the shared responsibility boundary.
2
Differentiate provider responsibilities from customer responsibilities in FaaS.
The CSP manages host OS patching and serverless environment maintenance. The customer manages application code, data governance, API access control, and identity permission policies.
Applying the shared responsibility model shows that data protection and custom code security always remain with the customer.

Anahtar Kavram

Cloud Shared Responsibility Model in Function-as-a-Service (FaaS)
Soru 278Soru

An enterprise security architecture team is redesigning identity federations across several vendor SaaS applications. To align with Zero Trust principles, the organization requires immediate session termination and access token revocation across all connected SaaS applications the moment an identity risk signal (such as impossible travel or device compliance failure) is detected at the central Identity Provider (IdP), rather than waiting for OAuth access tokens or SAML assertions to expire naturally. Which of the following identity architectural mechanisms best fulfills this real-time session security requirement?

Cevabı ve açıklamayı göster

Cevap: Implement Shared Signals and Events using the Continuous Access Evaluation Protocol (CAEP) between the IdP and relying parties.

Cevap

Implementing Shared Signals and Events using the Continuous Access Evaluation Protocol (CAEP) between the Identity Provider (IdP) and relying party applications.
The correct answer specifies implementing the Continuous Access Evaluation Protocol (CAEP). CAEP allows Identity Providers to communicate real-time security events (such as session revoking events, password changes, or device compliance changes) to connected relying party applications instantly. This satisfies the requirement for dynamic, continuous access evaluation under Zero Trust without relying on token expiration windows.

Adım Adım Çözüm

1
Analyze the core architectural requirement
The scenario requires real-time, event-driven session revocation across federated SaaS platforms upon IdP risk detection, bypassing traditional token TTL expirations.
Standard OAuth 2.0 access tokens and SAML assertions are stateless and valid until expiration unless explicitly revoked via real-time signal streams.
2
Evaluate identity protocols for active session control
CAEP allows the IdP to push real-time Security Event Tokens (SETs) directly to relying parties when user risk changes, instantly revoking or re-evaluating sessions.
This directly enforces continuous identity evaluation as mandated by modern Zero Trust architecture.
3
Differentiate from secondary provisioning or perimeter controls
SCIM handles user account identity lifecycle provisioning (not session events), network IP filters rely on perimeter trust, and initial MFA only inspects authentication at login time.
None of these secondary controls provide active, cross-domain continuous session revocation.

Anahtar Kavram

Continuous Access Evaluation Protocol (CAEP) in IAM Architecture
Tahmini Süre:2m 0s
Soru 279Soru

A biotechnology company needs to isolate its laboratory network housing unpatchable legacy gene-sequencing equipment. The laboratory devices must push telemetry data and analysis reports outward to a central server in the enterprise corporate zone, but the security architecture must strictly guarantee that no incoming connection requests or lateral traffic can reach the laboratory network from the corporate zone. Which of the following network controls best fulfills these security constraints?

Cevabı ve açıklamayı göster

Cevap: Deployment of a physical data diode between the laboratory network and the corporate network

Cevap

Deployment of a physical data diode between the laboratory network and the corporate network
The deployment of a physical data diode guarantees hardware-enforced unidirectional communication. This allows the legacy laboratory equipment to send outbound reports while physically preventing any inbound network traffic or cyber attacks from penetrating the laboratory segment.

Adım Adım Çözüm

1
Analyze the technical requirements of the scenario
Identified the need to allow outbound telemetry from legacy laboratory systems while enforcing a strict physical block against any inbound connections from the enterprise zone.
Unpatchable legacy systems require high isolation, and software-only firewalls can still present attack surfaces or misconfigurations.
2
Evaluate network segmentation archetypes against the requirement
A data diode uses physical optical connections (such as an LED transmitter to a photodiode receiver) to enforce hardware-based unidirectional communication.
Hardware-level unidirectional enforcement guarantees that no data or packets can traverse in the reverse direction into the critical laboratory zone.

Anahtar Kavram

Unidirectional Data Diodes and Secure Network Isolation
Tahmini Süre:1m 15s
Soru 280Soru

An enterprise organization is designing a disaster recovery strategy for its critical e-commerce platform. To ensure continuous business operations, the organization requires an off-site recovery facility that is fully configured with active servers, network infrastructure, and real-time data synchronization, allowing it to immediately assume operational duties if the primary site fails. Which of the following recovery site types best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: Hot site

Cevap

A hot site is a fully operational, mirrored facility capable of immediate failover with real-time data replication.
The option specifying a hot site is correct because a hot site provides a fully redundant, operational environment equipped with current hardware, operating systems, applications, and synchronized real-time data feeds. This allows the facility to take over primary operations immediately upon failover with virtually zero data loss.

Adım Adım Çözüm

1
Analyze the operational requirements from the scenario.
The requirement specifies an off-site recovery facility with active hardware, pre-configured software, real-time data replication, and immediate failover capabilities.
Identifying the target Recovery Time Objective (RTO) and Recovery Point Objective (RPO) dictates which redundancy facility tier is required.
2
Compare site redundancy tiers against the specified constraints.
Cold sites lack equipment; warm sites lack live data replication; mobile sites provide temporary portable infrastructure; hot sites maintain live mirrored infrastructure ready for immediate operation.
Only a hot site satisfies the near-zero downtime requirement through live data synchronization and ready-to-run systems.

Anahtar Kavram

Disaster Recovery Site Types and Redundancy
ÖncekiSayfa 14 / 21Sonraki
Security Architecture Alıştırma Soruları — CompTIA Security+ — Sayfa 14 | Examkin