Tüm alıştırma soruları

2232 soru

Soru 181Soru

A SOC analyst is reviewing web server access logs within a SIEM platform after an automated alert was generated. The analyst identifies the following log entries:

192.168.10.45 - - [27/Jul/2026:10:15:32 +0000] "GET /item.php?id=12%27%20UNION%20SELECT%20username,%20password_hash%20FROM%20users-- HTTP/1.1" 200 4812
192.168.10.45 - - [27/Jul/2026:10:15:40 +0000] "GET /item.php?id=12%27%20OR%201=1-- HTTP/1.1" 200 9520

Based on the log analysis, which security event has occurred?

Cevabı ve açıklamayı göster

Cevap: A SQL injection (SQLi) attack targeting the backend database through URL parameter manipulation.

Cevap

A SQL injection (SQLi) attack targeting the backend database through URL parameter manipulation.
The log entries show URL-encoded payloads containing standard SQL statements such as `UNION SELECT username, password_hash FROM users--` and `' OR 1=1--`. These syntax patterns confirm that an attacker is attempting to execute arbitrary SQL commands against the database through vulnerable parameter inputs.

Adım Adım Çözüm

1
Examine the HTTP request methods and URI paths in the log entries.
The client requested `/item.php?id=...` using GET requests.
Log analysis begins with identifying the target resource and parameter inputs.
2
Decode and analyze the parameter payloads (`%20UNION%20SELECT%20...` and `%20OR%201=1--`).
Decoded strings reveal `UNION SELECT username, password_hash FROM users--` and `' OR 1=1--`.
URL-decoded strings show clear relational database query statements designed to append commands or bypass login checks.
3
Correlate the payload type with standard application attack classifications.
The injection of relational database queries via input parameters defines SQL Injection (SQLi).
Distinguishing SQL syntax from script syntax or directory markers allows accurate event classification.

Anahtar Kavram

Log Analysis and SQL Injection Detection in SIEM
Soru 182Soru

A security analyst conducts a host and network audit of a newly deployed industrial sensor gateway host. The audit reveals two vulnerability findings: the host's administrative web interface uses unencrypted HTTP with factory default credentials, and the host resides on a flat corporate network segment directly accessible to internal workstations. Which of the following recommendations should the analyst make to remediate these vulnerabilities? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Enforce TLS encryption and update default credentials on the host's administrative interface.; Place the sensor gateway host into a dedicated VLAN with strict network microsegmentation rules.

Cevap

Enforcing TLS encryption with updated administrative credentials and isolating the host within a microsegmented VLAN directly remediate the identified host and network architecture vulnerabilities.
Updating default administrative credentials and requiring TLS encryption remediates the host management vulnerability, while assigning the host to a microsegmented VLAN addresses the network architecture exposure by preventing unauthorized internal communication.

Adım Adım Çözüm

1
Identify the host management vulnerability and its corresponding mitigation.
Enforcing transport layer security (TLS) and changing factory default passwords remediates administrative cleartext exposure and weak authentication.
Host hardening standards require secure management protocols (HTTPS/TLS) and robust, non-default credentials.
2
Identify the network architecture vulnerability and its corresponding mitigation.
Placing the device in a microsegmented VLAN restricts unauthorized lateral movement across the flat corporate network.
Segmenting sensitive or specialized hosts minimizes attack surface and enforces least privilege network access.
3
Evaluate distractor options against the specific audit findings.
Eliminate choices that misapply application firewalls, rely on edge-only trust, or misclassify control functions.
Controls must align directly with the host management and network isolation deficiencies identified.

Anahtar Kavram

Host Hardening and Network Microsegmentation
Soru 183Soru

A DevSecOps engineer is hardening a shared Linux host operating system running multiple containerized microservices for a financial application. Although process namespaces successfully prevent containers from viewing processes outside their environment, a security audit reveals that a compromised container could still invoke unauthorized kernel functions directly against the shared host kernel. Which of the following technical security controls should the engineer implement to restrict the specific system calls available to the containerized applications?

Cevabı ve açıklamayı göster

Cevap: Apply custom Secure Computing Mode (seccomp) profiles to filter and restrict allowed syscalls for the container runtime.

Cevap

Apply custom Secure Computing Mode (seccomp) profiles to filter and restrict allowed syscalls for the container runtime.
Secure Computing Mode (seccomp) is a security facility in the Linux kernel that allows system administrators to restrict the system calls a containerized process can make to the host kernel. By implementing a restrictive seccomp profile, any attempt by an attacker to execute prohibited or dangerous kernel system calls within a compromised container is blocked, significantly hardening container runtime isolation.

Adım Adım Çözüm

1
Analyze the security boundary risk presented in the scenario.
Containers share the host operating system kernel, making the kernel API surface (system calls) a primary vector for privilege escalation or container escape.
Process namespaces isolate visibility but do not prevent a process from making valid kernel syscalls.
2
Evaluate technical controls targeting Linux host and container security mechanisms.
Secure Computing Mode (seccomp) is specifically designed to act as a kernel syscall filter, allowing security administrators to define a whitelist of permitted system calls.
Restricting unnecessary syscalls limits an attacker's ability to exploit kernel vulnerabilities even if the container application is compromised.
3
Differentiate seccomp from other native Linux security mechanisms like cgroups and namespaces.
cgroups manage resource allocations, namespaces isolate system resources (IPC, PID, Network), while seccomp restricts kernel system call invocation.
Implementing seccomp directly addresses the audit finding regarding unauthorized system calls.

Anahtar Kavram

Container System Call Filtering and Kernel Isolation (seccomp)
Soru 184Soru

An enterprise security architect is designing network isolation controls for a corporate software development environment. The architecture must prevent lateral movement between developer workstations on the same local subnet while restricting direct administrative connections from developer machines to automated build servers. Which of the following network design strategies should the architect implement to achieve these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Configure Private VLANs (PVLANs) with isolated ports for the developer workstation subnet.; Deploy a bastion host within a dedicated transit zone to mediate management connections to the build servers.

Cevap

The architect should configure Private VLANs (PVLANs) with isolated ports on the developer workstation subnet and deploy a bastion host within a dedicated transit zone to control access to build servers.
Private VLANs (PVLANs) effectively isolate endpoints on the same subnet at Layer 2 to prevent lateral movement, while a bastion host in a transit zone ensures all administrative access to build systems is authenticated, logged, and proxied rather than directly exposed.

Adım Adım Çözüm

1
Analyze the lateral isolation requirement for developer workstations on the same subnet.
Determine that Layer 2 isolation via Private VLANs (PVLANs) prevents workstation-to-workstation (East-West) communication within a shared IP subnet.
PVLAN isolated ports restrict traffic so endpoints can only communicate with designated promiscuous ports (like gateways), mitigating lateral attack spread.
2
Analyze the access control requirement for administrative access to build servers.
Select a jump server/bastion host deployment within a DMZ or transit zone.
Bastion hosts mandate multi-factor authentication, logging, and strict proxying, preventing direct exposure of critical build infrastructure to general endpoint subnets.

Anahtar Kavram

Secure Network Segmentation and Lateral Movement Control
Soru 185Soru

An e-commerce enterprise needs to process customer payment cards while ensuring that actual Primary Account Numbers (PANs) are never stored in internal application databases. The security architecture replaces sensitive card numbers with non-sensitive surrogate values while storing the real card numbers in a secure external vault. Which of the following data protection mechanisms is being described?

Cevabı ve açıklamayı göster

Cevap: Tokenization

Cevap

Tokenization is the technique that substitutes sensitive data with non-sensitive surrogate tokens mapped to an external vault.
Tokenization replaces sensitive values such as payment card details with randomly generated surrogate values (tokens). The actual data is securely stored in a centralized token vault outside the local application databases, significantly reducing compliance scope.

Adım Adım Çözüm

1
Analyze the operational requirements of the storage security scenario
Identified the goal: replacing actual credit card numbers in local databases with placeholder values connected to a secure central vault.
Understanding the mechanism helps differentiate between mathematical cryptographic transformations and surrogate data replacement.
2
Evaluate candidate storage protection mechanisms against the scenario characteristics
Tokenization maps sensitive inputs to random non-cryptographic tokens, matching the scenario exactly.
Tokenization avoids mathematical encryption algorithms directly on stored database fields, reducing regulatory exposure.

Anahtar Kavram

Data Tokenization in Storage Architecture
Soru 186Soru

An IT administrator needs to deploy multiple isolated application services on a single physical host while minimizing memory overhead and eliminating the need to install a separate guest operating system for each service. Which of the following technologies best fulfills this requirement?

Cevabı ve açıklamayı göster

Cevap: Containerization

Cevap

Containerization is the correct technology because containers share the host system kernel, providing application isolation with minimal resource overhead compared to running full virtual machines with separate guest operating systems.
Containerization implements operating system-level virtualization, allowing multiple isolated applications to share a single host operating system kernel. This approach drastically reduces memory, CPU, and storage overhead compared to virtual machines.

Adım Adım Çözüm

1
Analyze the workload requirements given in the scenario.
The requirement emphasizes lightweight application isolation on a single host without running duplicate guest operating systems.
Distinguishing between kernel-sharing technologies and full hardware virtualization is critical when evaluating system overhead.
2
Compare virtualization architectures based on OS kernel resource allocation.
Containers utilize operating system-level virtualization (sharing the host kernel), whereas virtual machines utilize hardware-level virtualization requiring full guest OS installations.
Eliminating duplicate kernel instances conserves system memory and computing resources.

Anahtar Kavram

Containerization vs Virtualization Architecture
Soru 187Soru

An enterprise security architecture team at a telecommunications firm is updating their threat landscape documentation. Match each threat actor category on the left with its primary operational attributes, resources, and attack vector characteristics on the right.

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

Öğeler

Nation-state / Advanced Persistent Threat (APT)
Disgruntled Insider
Hacktivist Collective
Shadow IT

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Nation-state / APT matches with high sophistication, state funding, and supply chain/zero-day vectors. Disgruntled Insider matches with legitimate access, personal motivation, and internal sabotage/exfiltration vectors. Hacktivist Collective matches with ideological motivation and high-visibility DDoS/defacement vectors. Shadow IT matches with operational convenience lacking malicious intent, introducing unvetted assets.
Correctly matching threat actors requires aligning their core motivations, sophistication levels, resource availability, and primary attack mechanisms. Nation-state actors rely on heavy funding and stealth (zero-days/supply chain); insiders leverage authorized access; hacktivists target public visibility for ideological causes; and shadow IT introduces risks unintentionally due to unapproved operational workarounds.

Adım Adım Çözüm

1
Analyze the resources and motivation of Nation-state actors.
Identify that state-sponsored APT groups have high funding and use covert vectors like zero-days and supply chain intrusions.
Nation-states focus on long-term espionage requiring significant capital and advanced expertise.
2
Evaluate internal threats acting out of revenge or financial gain.
Identify that disgruntled insiders utilize established system access and privilege.
Insiders bypass perimeter controls naturally because they hold legitimate user accounts.
3
Examine ideological threat actors and their typical goals.
Match hacktivists with political motives and public disruption tactics like DDoS.
Hacktivist success relies on public attention and statement-making rather than hidden data theft.
4
Differentiate unsanctioned internal IT usage from intentional attacks.
Match Shadow IT with non-malicious employee workarounds that expose cloud assets.
Shadow IT stems from a desire for efficiency, leading to security blind spots.

Anahtar Kavram

Threat Actor Classifications, Attributes, and Attack Vector Characteristics
Soru 188Soru

A logistics enterprise recently migrated its driver dispatch platform to a public cloud API gateway. During a post-deployment security assessment, an analyst discovers that while TLS 1.3 protects network transit, the API gateway relies exclusively on source IP address allowlisting to authorize client requests sent from drivers' mobile devices across cellular carrier networks. Which of the following architectural weaknesses represents the MOST critical security control failure in this implementation?

Cevabı ve açıklamayı göster

Cevap: Over-reliance on implicit network perimeter trust rather than continuous client identity authentication and authorization.

Cevap

Over-reliance on implicit network perimeter trust rather than continuous client identity authentication and authorization is the primary security control failure.
Relying on network location or IP addresses to grant authorization across public mobile networks fails to verify client identity. In a Zero Trust context, security controls must continuously authenticate and authorize users/devices regardless of network location.

Adım Adım Çözüm

1
Analyze the access control mechanism described in the scenario.
The API gateway uses source IP allowlisting on dynamic, external cellular networks.
Mobile devices on cellular networks share public IP pools that change frequently and cannot reliably establish identity.
2
Evaluate the architectural principle being violated.
Assumptions of trust based on network location reflect a broken perimeter security model.
Zero Trust Architecture dictates that network location never confers implicit trust, requiring explicit authentication and granular authorization for every request.

Anahtar Kavram

Perimeter Trust vs. Zero Trust Architecture Controls
Tahmini Süre:1m 30s
Soru 189Soru

Match each storage security control mechanism to its corresponding enterprise architectural objective.

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

Öğeler

LUN Masking and Fabric Zoning
KMIP-integrated Hardware Security Module (HSM)
Exact Data Matching (EDM) DLP
Format-Preserving Encryption (FPE)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match LUN Masking and Fabric Zoning with SAN volume isolation, KMIP-integrated HSM with centralized key management root-of-trust, Exact Data Matching DLP with hashed database record inspection, and Format-Preserving Encryption with format-constrained ciphertext transformation.
Each storage security technology fulfills a distinct operational mandate: LUN Masking and Fabric Zoning isolate SAN storage volumes; a KMIP-integrated HSM standardizes storage encryption key lifecycles; Exact Data Matching DLP inspects outbound traffic using database record hashes; and Format-Preserving Encryption secures stored values while maintaining original database field formats.

Adım Adım Çözüm

1
Analyze SAN boundary security controls
LUN Masking and Fabric Zoning segment network traffic and restrict volume access at the storage controller and switch tier based on host HBA identity.
This isolates storage logical units from unauthorized hosts on the shared storage network.
2
Evaluate key management architecture for bulk storage encryption
A KMIP-integrated HSM centralizes key generation, storage, and distribution across disparate storage arrays.
KMIP enables standardized communication between key management servers and storage clients.
3
Identify structured data exfiltration prevention controls
Exact Data Matching (EDM) relies on database hashes to pinpoint sensitive structured records leaving the network.
EDM reduces false positives compared to standard pattern matching when monitoring data in transit.
4
Determine data-at-rest obfuscation for legacy database schemas
Format-Preserving Encryption maintains field lengths and character sets during encryption.
FPE satisfies compliance encryption requirements without breaking database constraints.

Anahtar Kavram

Enterprise Storage Security Architecture and Data Protection Controls
Soru 190Soru

An enterprise security architect is designing an Identity and Access Management (IAM) architecture to support modern cloud applications, API access, network administration, and automated user lifecycle management. Match each IAM protocol or specification on the left to its corresponding architectural use case on the right.

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

Öğeler

SAML 2.0
OAuth 2.0
OpenID Connect (OIDC)
TACACS+
SCIM

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

SAML 2.0 matches XML-based federation assertion exchange between IdP and SP; OAuth 2.0 matches API authorization and access token delegation; OpenID Connect (OIDC) matches user identity authentication layer over OAuth using JWT ID tokens; TACACS+ matches full-payload encrypted network AAA separating authN and authZ; SCIM matches automated identity provisioning/deprovisioning REST standard.
Each IAM technology fulfills a distinct architectural role within enterprise security. SAML 2.0 facilitates XML assertion-based web browser federation SSO across organizations. OAuth 2.0 governs delegated access authorization to protected resources via tokens. OpenID Connect operates on top of OAuth 2.0 to add authentication capability using JWT ID tokens. TACACS+ provides secure administrative AAA for network appliances with full payload encryption and command-level authorization decoupling. SCIM provides standard REST endpoints to automate identity provisioning and account lifecycle operations across enterprise and cloud services.

Adım Adım Çözüm

1
Analyze SAML 2.0 functionality.
Identified SAML 2.0 as an XML-based federated SSO standard that passes security assertions between Identity Providers and Service Providers.
SAML relies on XML payload assertions across cross-domain boundaries.
2
Analyze OAuth 2.0 functionality.
Identified OAuth 2.0 as an authorization framework that delegates scoped API access tokens to applications.
OAuth 2.0 provides delegated authorization rather than direct authentication.
3
Analyze OpenID Connect (OIDC) functionality.
Identified OIDC as an authentication extension on top of OAuth 2.0 utilizing JSON Web Tokens (JWTs).
OIDC fills the authentication gap in OAuth 2.0 by introducing standardized ID tokens.
4
Analyze TACACS+ network administrative AAA properties.
Identified TACACS+ as encrypting the entire packet body and decoupling authentication from command authorization.
Unlike RADIUS, TACACS+ separates AAA functions and provides full payload encryption.
5
Analyze SCIM protocol functionality.
Identified SCIM as an open standard protocol for automating cloud identity provisioning and deprovisioning.
SCIM uses RESTful Web APIs and standardized JSON/XML schemas to manage identity lifecycle changes across disparate SaaS systems.

Anahtar Kavram

Identity and Access Management Architecture Protocols and Frameworks
Soru 191Soru

A smart utility company deploys thousands of IoT smart meters to transmit real-time electrical grid telemetry back to a central collection server. During a technical security evaluation of the device firmware binary, security analysts discover that all smart meters utilize a single, identical AES key compiled directly into the executable code to encrypt outgoing telemetry payloads. Which cryptographic weakness is present in this deployment, and what is the main security risk associated with it?

Cevabı ve açıklamayı göster

Cevap: Hardcoded cryptographic key reliance, which allows an adversary who extracts the secret key from a single physical smart meter to decrypt telemetry transmissions from all devices across the enterprise.

Cevap

Hardcoded cryptographic key reliance, which allows an adversary who extracts the secret key from a single physical smart meter to decrypt telemetry transmissions from all devices across the enterprise.
Hardcoding secret cryptographic keys inside distributed application or firmware binaries is a critical security vulnerability. Anyone with physical or remote access to a single device can perform static analysis or memory dumps to extract the key, allowing them to decrypt traffic from every other device using that same shared key.

Adım Adım Çözüm

1
Analyze the technical scenario provided in the stem.
Identified that all smart meters share an identical AES symmetric key hardcoded into their firmware binaries.
Hardcoding cryptographic keys in compiled code exposes static credentials to extraction via reverse-engineering.
2
Evaluate the systemic impact of sharing a single hardcoded key across all endpoints.
Determined that extracting the key from one device compromises the confidentiality of all communications across the fleet.
Symmetric encryption relies on key secrecy; sharing a static key destroys compartmentalization and secret management safeguards.
3
Select the option that correctly describes the flaw and its primary vulnerability impact.
Confirmed that hardcoded cryptographic key reliance creates fleet-wide compromise exposure upon reverse-engineering.
Best practice requires distinct key distribution protocols (such as dynamic session negotiation via PKI or unique per-device key provisioning).

Anahtar Kavram

Hardcoded and Shared Cryptographic Key Vulnerabilities
Soru 192Soru

An enterprise security analyst is designing an isolation architecture for a multi-tenant physical host. The system will process sensitive financial transactions alongside untrusted third-party code. The security policy mandates that a vulnerability exploited in one workload must not allow memory access or host execution privileges over co-located workload instances on the same server. Which of the following isolation strategies best fulfills this requirement?

Cevabı ve açıklamayı göster

Cevap: Deploying the workloads in separate Virtual Machines managed by a Type 1 hypervisor to leverage hardware-assisted memory protection and virtualization boundaries.

Cevap

Deploying the workloads in separate Virtual Machines managed by a Type 1 hypervisor to leverage hardware-assisted memory protection and virtualization boundaries.
Virtual machines (VMs) managed by a Type 1 (bare-metal) hypervisor instantiate dedicated guest virtual hardware environments. By leveraging hardware virtualization features embedded in CPU architecture, the hypervisor enforces strict hardware-level memory paging and execution abstraction, ensuring untrusted code in one guest OS cannot inspect or compromise co-located workloads.

Adım Adım Çözüm

1
Evaluate the architectural isolation requirement.
The requirement demands strong hardware-enforced memory separation between co-located workloads handling untrusted code.
Software-level process separation on a shared host OS kernel does not prevent cross-workload memory access if kernel-level vulnerabilities exist.
2
Compare container-based OS isolation against hypervisor-based hardware virtualization.
Virtual Machines (VMs) present virtualized hardware abstractions to guest operating systems, whereas containers share a single host OS kernel.
Hardware-assisted CPU virtualization enforced by a Type 1 hypervisor ensures memory paging and execution states remain isolated per guest VM.
3
Identify the option offering hypervisor-level hardware isolation.
Type 1 hypervisor deployment satisfies the requirement by preventing guest-to-guest and guest-to-host memory leaks.
This strategy aligns with enterprise security principles for high-assurance multi-tenant workload isolation.

Anahtar Kavram

Hypervisor vs. Container Isolation Boundaries
Tahmini Süre:1m 30s
Soru 193Soru

During a routine security audit, a security engineer discovers that an internal data-processing application uses static, long-lived API keys embedded directly within source code to query a backend customer database. Additionally, the service account assigned to this application currently holds full database administrator privileges. To mitigate credential exposure risks and align with identity operational best practices, which of the following actions should the engineer take? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Deploy a centralized secrets management vault to dynamically issue and automatically rotate short-lived API credentials.; Reconfigure account permissions using scoped Role-Based Access Control (RBAC) to restrict the service account to specific read and write operations.

Cevap

Deploying a centralized secrets management vault to issue and rotate short-lived API credentials, and reconfiguring account permissions using scoped Role-Based Access Control (RBAC) to enforce least privilege.
Deploying a centralized secrets management vault automates credential rotation and removes static secrets from source code, securing the identity lifecycle. Implementing scoped Role-Based Access Control (RBAC) ensures the service account retains only the minimum permissions necessary for data processing, satisfying the principle of least privilege.

Adım Adım Çözüm

1
Analyze the identified operational IAM vulnerabilities in the scenario.
Identified two core deficiencies: hardcoded long-lived credentials in source code and excessive administrative privileges on a service account.
Resolving credential leakage and privilege creep requires distinct operational controls addressing credential lifecycle and access assignment.
2
Evaluate remediation strategies for the hardcoded long-lived credentials.
Integrating a centralized secrets vault allows applications to fetch short-lived tokens on demand without embedding static secrets into application repositories.
Automated rotation and dynamic issuance mitigate the impact of credential harvesting and unauthorized source code disclosure.
3
Evaluate authorization controls for the service account's excessive permissions.
Applying scoped Role-Based Access Control (RBAC) aligns account rights directly to the specific database operations required by the application.
Restricting database administrator privileges to minimum functional rights enforces the principle of least privilege.

Anahtar Kavram

Identity and Access Management Operations: Credential Lifecycle Management and Least Privilege Enforcement
Soru 194Soru

An enterprise organization is designing a high-availability infrastructure for its edge network services across two geographically separate data centers. The design requires automatic traffic redirection to the healthy data center if a primary site suffers an outage, while minimizing client browser resolution caching during a failover event. Which of the following mechanisms should the security architect deploy to meet these resilience objectives? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Global Server Load Balancing (GSLB) configured with short Time-to-Live (TTL) DNS record values; Automated DNS health-check monitoring paired with dynamic failover routing policies

Cevap

The correct mechanisms are Global Server Load Balancing (GSLB) configured with short Time-to-Live (TTL) DNS record values, and automated DNS health-check monitoring paired with dynamic failover routing policies.
High-availability edge architecture across multiple data centers relies on Global Server Load Balancing (GSLB) to route traffic to active facilities. Configuring short Time-to-Live (TTL) values prevents client systems and resolvers from caching obsolete IP addresses. Automated health checks work alongside GSLB to detect site outages in real time and automatically re-route incoming connections to healthy infrastructure.

Adım Adım Çözüm

1
Identify the primary requirement for geographic site failover and client caching prevention.
Determined that multi-site traffic routing and DNS cache control are required.
Geographically separate data centers require site-level load distribution and rapid record expiry so clients query healthy nodes promptly.
2
Evaluate high-availability network routing controls.
GSLB with short TTLs and continuous health checks dynamically redirect traffic away from failed sites without client resolution delays.
GSLB evaluates node health dynamically and short TTLs prevent clients from retaining stale IP addresses.
3
Differentiate storage fault tolerance and detective monitoring controls from network resilience controls.
Eliminated RAID 10 drive arrays and passive IDS network taps.
RAID handles local storage drive failures, not site failover; passive IDS monitors network packets without altering or redirecting traffic paths.

Anahtar Kavram

Geographic High Availability and Global Server Load Balancing
Soru 195Soru

An enterprise security team is configuring an automated Security Orchestration, Automation, and Response (SOAR) playbook to respond to high-confidence phishing alerts containing malicious URL links. The team wants to execute rapid containment and context enrichment while preventing self-inflicted operational outages. Which of the following automated actions should be incorporated into this playbook? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Query threat intelligence feeds via API webhooks to enrich the incident with domain reputation scores and known indicators of compromise.; Revoke active user session tokens and trigger a forced credential reset through Identity Provider (IdP) API integration.

Cevap

The appropriate automated response actions are querying threat intelligence feeds via API webhooks to enrich incident context and revoking active user session tokens with a forced credential reset via Identity Provider API integration.
The correct response actions include enriching alert context via threat intelligence API integrations and performing targeted identity containment by revoking active user sessions through Identity Provider APIs. These steps isolate compromised credentials and supply vital contextual data without risking self-inflicted enterprise downtime.

Adım Adım Çözüm

1
Identify the primary goals of the automated incident response playbook.
The core goals are context enrichment and rapid, non-disruptive containment of the compromised account.
SOAR playbooks should streamline triage and mitigate active threats while maintaining operational continuity.
2
Assess threat intelligence enrichment mechanisms.
Querying external threat feeds via API webhooks retrieves domain reputation and indicators of compromise automatically.
API integrations allow the SOAR platform to gather contextual intelligence without affecting network access or infrastructure stability.
3
Evaluate containment actions for risk and efficacy.
Revoking session tokens via Identity Provider APIs isolates the specific compromised user identity, whereas adding internal domains to perimeter firewalls creates catastrophic operational outage.
Targeted API-driven identity containment neutralizes user compromise safely, whereas flawed playbook logic can take down critical services.

Anahtar Kavram

SOAR Playbook Design and Automated Incident Response Integration
Soru 196Soru

A security analyst has been tasked with evaluating an enterprise web application server to identify missing software patches, unsecure configurations, and known system weaknesses. The organization requires that the assessment identify specific vulnerability details without attempting system exploitation or causing service disruption to production users. Which of the following security assessment methods should the analyst execute to fulfill these requirements?

Cevabı ve açıklamayı göster

Cevap: A credentialed, non-intrusive vulnerability scan

Cevap

A credentialed, non-intrusive vulnerability scan is the correct methodology because it safely inspects system configurations and patch levels under authenticated context without attempting intrusive exploits.
Executing a credentialed, non-intrusive vulnerability scan allows the analyst to inspect local patch levels and misconfigurations using valid system credentials. Because the scan is non-intrusive, it refrains from executing active exploitation routines, fulfilling the management requirement to avoid disruption to production availability.

Adım Adım Çözüm

1
Analyze the operational constraints established in the scenario.
Identified the goal to locate missing patches and misconfigurations without causing downtime or executing exploits.
The assessment must be non-disruptive and non-intrusive while maintaining high audit accuracy.
2
Evaluate the capabilities of credentialed vulnerability scanning against non-intrusive scanning goals.
Determined that credentialed access allows direct verification of local software versions and configurations safely.
Authenticated scanning yields comprehensive vulnerability reporting with low impact on system availability.

Anahtar Kavram

Credentialed vs Non-Intrusive Vulnerability Assessment Methods
Soru 197Soru

A regional power grid operator discovers an undetected intrusion within its operational technology (OT) network. Forensic analysis reveals that the attackers leveraged a zero-day vulnerability in specialized industrial controller software to establish long-term persistence. Over an eight-month period, the attackers conducted extensive reconnaissance and network mapping without deploying ransomware or attempting financial extortion. Which of the following threat actor types and attribute profiles best aligns with this attack scenario?

Cevabı ve açıklamayı göster

Cevap: A nation-state actor characterized by high sophistication, substantial resources, and strategic geopolitical motives

Cevap

A nation-state actor characterized by high sophistication, substantial resources, and strategic geopolitical motives
The correct answer identifies a nation-state actor. Nation-state threat actors (often referred to as Advanced Persistent Threats or APTs) possess significant financial backing, high technical sophistication, and access to zero-day exploits. Their primary motivation is strategic advantage, espionage, or preparing for future operational disruption rather than immediate monetary gain.

Adım Adım Çözüm

1
Analyze the attack attributes and capabilities presented in the scenario
Identified key indicators: custom zero-day vulnerability usage, prolonged stealth (8 months), deep reconnaissance of critical infrastructure, and absence of financial motives.
Evaluating capability, resources, and behavior helps determine the threat actor profile.
2
Map observed attributes to threat actor categories
High sophistication + high funding + stealthy strategic objectives = Nation-state / APT actor.
Nation-state actors are uniquely defined by advanced capabilities, vast resources, and long-term strategic/geopolitical goals.

Anahtar Kavram

Threat Actor Attributes, Motivations, and Capabilities
Soru 198Soru

An industrial manufacturing facility needs to secure its operational technology (OT) network housing Programmable Logic Controllers (PLCs) from the corporate IT network. Unauthorized network scanning originating from corporate workstations recently reached the shop floor. The security architect must permit authorized engineering personnel to conduct remote maintenance on PLCs while preventing direct network routing between IT endpoints and OT devices. Which of the following network architecture designs best meets these security requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy a jump box in a segmented DMZ requiring multifactor authentication and session recording for management traffic between IT and OT networks.

Cevap

Deploying a jump box in a segmented DMZ requiring multifactor authentication and session recording for management traffic between IT and OT networks.
Deploying a jump box within a demilitarized zone (DMZ) between corporate IT and industrial control OT networks prevents direct network connectivity between endpoints. Requiring strong authentication and session logging ensures remote maintenance traffic is securely managed, authorized, and audited without exposing PLCs directly to enterprise network risks.

Adım Adım Çözüm

1
Analyze the operational and security requirements
Direct IP routing between corporate IT workstations and OT PLCs must be blocked while still enabling monitored administrative access.
Protecting critical industrial control devices against unauthorized lateral movement and network scanning requires strict security zone separation.
2
Evaluate secure network boundary and transit control options
A jump box situated in a DMZ isolates the two zones by terminating incoming sessions and proxying management commands rather than allowing direct end-to-end packet transit.
Intermediary jump servers combined with MFA and session auditing enforce least-privilege access and strong zone isolation.
3
Verify the correct architectural implementation
The DMZ jump box architecture fulfills segmentation principles for OT and IT network isolation.
It prevents direct network traversal between environments while maintaining full auditability for remote administration.

Anahtar Kavram

Secure Network Design and Segmentation using DMZ and Jump Servers
Tahmini Süre:1m 30s
Soru 199Soru

A security architect is designing a cloud backup and object storage architecture to safeguard critical corporate records against unauthorized data exfiltration and ransomware tampering. The design must guarantee data confidentiality at rest while preventing stored backup snapshots from being modified or deleted even if administrative credentials are compromised. Which TWO of the following technical controls should the architect incorporate into the storage design to satisfy these requirements? (Select TWO).

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

Cevabı ve açıklamayı göster

Cevap: Enforce AES-256 symmetric encryption managed through a dedicated key management service for bulk storage encryption.; Configure Write Once, Read Many (WORM) storage policies with object retention locks on backup buckets.

Cevap

The architect should enforce AES-256 symmetric encryption managed via a key management service to ensure data confidentiality at rest, and configure Write Once, Read Many (WORM) storage policies with retention locks to ensure data immutability against deletion.
To satisfy both requirements, the organization needs a robust encryption mechanism for confidentiality at rest and an immutable storage policy for anti-deletion resilience. AES-256 symmetric encryption provides high-speed bulk storage encryption suitable for large backup volumes. Write Once, Read Many (WORM) storage policies enforce object immutability, prohibiting data overwrite or deletion even if administrative credentials are compromised.

Adım Adım Çözüm

1
Identify confidentiality control requirement for bulk data at rest
AES-256 symmetric encryption delivers secure, fast bulk encryption appropriate for storage volumes and objects.
Symmetric algorithms are optimized for high-volume storage encryption performance compared to asymmetric ciphers.
2
Identify anti-tampering and anti-deletion control requirement for backup objects
Write Once, Read Many (WORM) policies combined with retention locks enforce data immutability.
WORM storage prevents any modification or destruction of written data objects even by privileged accounts during the retention period.

Anahtar Kavram

Data Protection and Storage Security Architecture
Soru 200Soru

A maritime shipping enterprise is formalizing its cloud security architecture strategy across diverse operational environments. Match each security operational requirement on the left with the corresponding cloud model or security architecture component on the right.

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

Öğeler

Enforcing data loss prevention (DLP) and access controls across web applications used by corporate employees without modifying the cloud application code.
Provisioning isolated compute and storage infrastructure exclusively dedicated to single-tenant regulatory compliance data within an enterprise-controlled datacenter.
Deploying virtual instances where the enterprise retains full administrative control over operating system hardening, middleware configuration, and local firewall rules.
Participating in a joint logistics tracking platform hosted in the cloud and shared exclusively among authorized trade partners and customs authorities.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Enforcing DLP across web applications matches Cloud Access Security Broker (CASB); Dedicated single-tenant infrastructure matches Private Cloud Deployment Model; Managing guest OS hardening and firewall rules on virtual instances matches Infrastructure as a Service (IaaS); Shared tracking platform among authorized partners matches Community Cloud Deployment Model.
Each operational requirement correctly aligns with its architectural counterpart based on the shared responsibility model and deployment boundaries: CASB handles proxy/API security enforcement for cloud applications, Private Cloud guarantees single-tenant isolation, IaaS gives the customer full OS-level management control, and Community Cloud supports shared infrastructure restricted to specified industry partners.

Adım Adım Çözüm

1
Analyze the operational security requirement for intermediate policy enforcement over third-party web apps.
Identify that a Cloud Access Security Broker (CASB) provides inline or API-based enforcement of DLP and access control across cloud services.
CASB acts as an intermediary enforcing security, compliance, and governance policies.
2
Evaluate the tenancy and location requirements for single-tenant compliance data.
Map single-tenant, dedicated enterprise infrastructure to a Private Cloud model.
Private clouds guarantee isolated resources managed solely for one enterprise.
3
Examine the management responsibility boundary of guest OS hardening and middleware.
Map guest OS administration and virtual firewall control to Infrastructure as a Service (IaaS).
In IaaS, the customer retains control over the operating system and above, while the provider manages physical infrastructure.
4
Determine the cloud deployment model for infrastructure shared among bounded organizations with common goals.
Map joint industry partner platforms to a Community Cloud model.
Community clouds host joint infrastructure shared exclusively among participating entities with shared missions or compliance mandates.

Anahtar Kavram

Cloud Service and Deployment Models
Tahmini Süre:1m 30s
ÖncekiSayfa 10 / 112Sonraki
Tüm alıştırma soruları — CompTIA Security+ | Examkin