Courseiva

Certified Information Systems Security Professional CISSP (CISSP) — Questions 226300

747 questions total · 10pages · All types, answers revealed

Page 3

Page 4 of 10

Page 5
226
MCQmedium

An organization is decommissioning a server containing magnetic hard drives that stored sensitive data. The data has been backed up to tape and the drives are to be reused. Which media sanitization method is most appropriate to ensure data cannot be recovered while preserving the drives for reuse?

A.Degaussing
B.Overwriting the entire drive with a recognized standard
C.Physical destruction (shredding)
D.Cryptographic erasure
AnswerB

Overwriting is a data sanitization method that involves writing new data (e.g., patterns of ones and zeros) over all addressable locations on the storage media, often multiple times. Adhering to a recognized standard, such as NIST SP 800-88 "Purge" guidelines, ensures that the original data is rendered unrecoverable using state-of-the-art laboratory techniques. This method effectively sanitizes the drive while preserving its functionality, making it suitable for secure reuse or repurposing.

Why this answer

Overwriting (e.g., DoD 5220.22-M) is effective for magnetic media and allows reuse; degaussing and destruction do not allow reuse.

227
MCQeasy

A company has a headquarters and three branch offices connected via MPLS VPN. Recently, they deployed a new VoIP system across all sites. Users report intermittent call drops and poor voice quality during peak business hours. The network team suspects packet loss and jitter are the cause. The IT manager wants to verify the issue without affecting production traffic. Which of the following is the best course of action?

A.Deploy a full packet capture on all branch routers.
B.Use IP SLA to generate test traffic and measure jitter and packet loss.
C.Conduct a network assessment by duplicating traffic to a monitoring tool.
D.Increase the MPLS bandwidth immediately.
AnswerB

IP Service Level Agreements (SLA) actively generate synthetic traffic, mimicking real application flows like VoIP or video, to measure specific performance metrics. This non-intrusive method allows for precise measurement of jitter, latency, and packet loss without impacting live production traffic. By simulating actual application behavior, IP SLA provides a clear baseline and ongoing insight into network quality, making it ideal for proactive performance assessment and identifying subtle degradations.

Why this answer

IP SLA can generate synthetic traffic to measure network performance metrics like jitter, latency, and packet loss without impacting production traffic. Creating a full packet capture is resource-intensive and may affect performance. Duplicating traffic requires additional configuration and may not reflect real-time issues.

Increasing bandwidth is a solution, not a diagnostic step.

228
MCQmedium

During a Business Impact Analysis (BIA), the maximum amount of time a business process can be unavailable before causing significant harm is determined. Which metric represents this?

A.Work Recovery Time (WRT)
B.Maximum Tolerable Period of Disruption (MTPD)
C.Recovery Point Objective (RPO)
D.Recovery Time Objective (RTO)
AnswerB

The Maximum Tolerable Period of Disruption (MTPD) represents the absolute longest time a business process or function can be inoperative before the organization experiences unacceptable consequences, such as significant financial loss, regulatory penalties, or irreparable reputational damage. It is a critical business-driven metric established during the BIA, defining the ultimate threshold for downtime that the business can endure without suffering severe harm. All recovery objectives, including RTO, must be set to ensure MTPD is not exceeded.

Why this answer

Maximum Tolerable Period of Disruption (MTPD) is the longest time a process can be disrupted before recovery is required.

229
MCQmedium

A company is implementing a risk management program. They have identified a critical server with an asset value of $50,000. The exposure factor due to a potential threat is 40%, and the annual rate of occurrence is 2. What is the Annualized Loss Expectancy (ALE)?

A.$50,000
B.$40,000
C.$20,000
D.$100,000
AnswerB

This option correctly calculates the Annualized Loss Expectancy (ALE) by first determining the Single Loss Expectancy (SLE) and then multiplying it by the Annualized Rate of Occurrence (ARO). The SLE is derived from the Asset Value ($50,000) multiplied by the Exposure Factor (0.4), resulting in $20,000. Multiplying this SLE by the ARO of 2 yields an ALE of $40,000, representing the expected financial loss from this specific risk over a year.

Why this answer

ALE = ARO × SLE; SLE = AV × EF = $50,000 × 0.4 = $20,000; ALE = 2 × $20,000 = $40,000.

230
MCQhard

A multinational corporation operates a private MPLS VPN network connecting 50 branch offices to a central data center. The network uses BGP as the routing protocol within the VPN, with each branch announcing its internal prefixes to the data center routers. Over the past week, several branch offices have reported intermittent connectivity issues, with traffic being routed to incorrect destinations before recovering. Network logs show that during these incidents, the data center router receives unexpected BGP updates from one of the branch routers, advertising prefixes that belong to other branches. BGP sessions remain established without flaps. The security team is concerned that this could be a route leak or intentional hijack. The network engineer has verified that all BGP sessions are authenticated with MD5 and that RPKI validation is not currently deployed. Which course of action should the engineer take first to mitigate the issue?

A.Configure inbound BGP prefix filtering on the data center routers.
B.Implement BGP Flowspec to rate-limit traffic to the affected prefixes.
C.Deploy RPKI validation across all routers.
D.Increase the BGP hold timer on data center routers.
AnswerA

Configuring inbound BGP prefix filtering on data center routers is a direct and immediate control mechanism to prevent route leaks. By explicitly defining which prefixes are acceptable to receive from branch routers, the data center routers can block any unauthorized or unexpected prefixes from being propagated further into the core network or other VPN segments. This ensures that only legitimate routes are learned and advertised, effectively containing the leak at its ingress point.

Why this answer

The intermittent connectivity issues are caused by a branch router advertising prefixes that belong to other branches, which is a classic route leak or hijack scenario. Configuring inbound BGP prefix filtering on the data center routers is the immediate and most effective mitigation because it allows the engineer to explicitly define which prefixes are accepted from each BGP neighbor, preventing unauthorized or incorrect routes from being installed in the routing table. This approach does not require additional infrastructure or protocol changes and directly addresses the root cause of the traffic misdirection.

Exam trap

The trap here is that candidates may assume RPKI is the best first step because it is a modern security mechanism, but the question explicitly states it is not deployed and asks for the first action to mitigate the issue, making immediate inbound filtering the correct answer over a longer-term deployment.

How to eliminate wrong answers

Option B is wrong because BGP Flowspec is designed to filter or rate-limit traffic based on flow specifications (e.g., source/destination IP, port) after routes are already installed, but it does not prevent the initial injection of invalid BGP routes; it is a reactive traffic engineering tool, not a proactive route validation mechanism. Option C is wrong because deploying RPKI validation is a longer-term, infrastructure-dependent solution that requires setting up RPKI caches, configuring routers to validate route origin, and potentially updating ROAs; it is not the first course of action when an immediate fix is needed, and it does not address the specific issue of a branch advertising other branches' prefixes (which could still pass RPKI if the AS origin is valid). Option D is wrong because increasing the BGP hold timer only affects how long a router waits for keepalive messages before declaring a peer down; it does not prevent the acceptance of invalid routes and would actually delay detection of session issues, making the problem worse.

231
MCQmedium

A software company uses a third-party library that has a known critical vulnerability. The library is used extensively and rewriting the code would take months. What is the BEST immediate action to reduce risk?

A.Remove the library from the codebase immediately
B.Disable the vulnerable feature in the library
C.Increase logging and monitoring to detect exploitation attempts
D.Implement a Web Application Firewall (WAF) rule to block exploitation
AnswerD

Implementing a Web Application Firewall (WAF) rule provides an effective 'virtual patching' solution by inspecting incoming traffic and blocking malicious requests targeting the known vulnerability before they reach the application. A WAF can be configured rapidly to identify and filter specific attack patterns, offering immediate protection without requiring modifications to the application's source code or the vulnerable library itself. This external layer of defense is a strong interim measure until a permanent fix can be deployed.

Why this answer

Implementing a Web Application Firewall (WAF) rule to block exploitation provides an immediate, compensating control that mitigates the known vulnerability without requiring code changes. This is the best immediate action because it buys time for a permanent fix while reducing risk, aligning with the principle of defense in depth. The WAF can inspect HTTP/HTTPS traffic for attack patterns (e.g., SQL injection, path traversal) specific to the vulnerable library and block malicious requests at the application layer.

Exam trap

The trap here is that candidates often choose 'Remove the library immediately' (Option A) because it seems like the most direct fix, but they fail to consider the business continuity impact and the need for a risk-based, phased approach to remediation.

How to eliminate wrong answers

Option A is wrong because removing the library immediately would break the application, causing a denial of service and potentially greater business impact than the vulnerability itself. Option B is wrong because disabling the vulnerable feature may not be feasible if the feature is integral to the library's core functionality, and it could still leave other attack surfaces exposed (e.g., memory corruption bugs). Option C is wrong because increasing logging and monitoring only detects exploitation attempts after they occur, not preventing them; it does not reduce the risk of a successful attack in real time.

232
MCQmedium

Which of the following is the correct order of priority for the ISC2 Code of Ethics Canons?

A.Advance the profession, protect society, act honorably, provide diligent service
B.Protect society, act honorably, provide diligent service, advance the profession
C.Provide diligent service, protect society, act honorably, advance the profession
D.Act honorably, provide diligent service, protect society, advance the profession
AnswerB

This sequence accurately represents the correct hierarchical order of the (ISC)² Code of Ethics Canons. "Protect Society, the Commonwealth, and the Infrastructure" is the foundational and highest-priority canon, followed by "Act honorably, honestly, justly, responsibly, and legally," then "Provide diligent and competent service to principals and the profession," and finally, "Advance and protect the profession."

Why this answer

The canons in order: 1. Protect society, the common good, and the public trust. 2. Act honorably, honestly, justly, responsibly, and legally. 3.

Provide diligent and competent service to principals. 4. Advance and protect the profession.

233
MCQhard

A security architect is reviewing a system that uses a microkernel operating system. The architect is concerned about potential side-channel attacks between processes. Which mitigation is most effective at the architecture level?

A.Randomize the address space layout (ASLR)
B.Implement stack canaries in all user-space applications
C.Reduce the number of system calls and IPC mechanisms
D.Use cache partitioning or cache coloring to isolate process caches
AnswerD

Using cache partitioning or cache coloring directly addresses cache-based side-channel attacks by logically or physically isolating cache lines used by different processes or security domains. Cache partitioning assigns dedicated cache regions to specific processes, while cache coloring maps virtual pages to distinct physical cache sets, preventing one process from influencing or observing the cache state of another. This isolation mitigates timing-based information leakage, where an attacker infers sensitive data by observing variations in memory access times caused by cache hits or misses induced by a victim's operations.

Why this answer

D is correct because cache partitioning or cache coloring directly addresses the root cause of side-channel attacks in a microkernel environment: shared CPU caches. By isolating each process's cache footprint, an attacker cannot infer sensitive data (e.g., cryptographic keys) through timing variations or cache occupancy measurements, which is a fundamental architectural mitigation.

Exam trap

The trap here is that candidates often confuse software-based mitigations (ASLR, stack canaries) with hardware-level side-channel defenses, or mistakenly think reducing IPC eliminates all covert channels when the real threat is shared microarchitectural state.

How to eliminate wrong answers

Option A is wrong because ASLR randomizes memory addresses to hinder code-reuse attacks (e.g., ROP), but it does not prevent cache-based side channels that exploit timing differences in shared hardware resources. Option B is wrong because stack canaries detect buffer overflows in user-space applications, which is a software vulnerability mitigation unrelated to side-channel attacks between processes. Option C is wrong because reducing system calls and IPC mechanisms may shrink the attack surface for kernel exploits but does not eliminate the hardware-level cache contention that enables side-channel leakage.

234
MCQhard

A company uses a qualitative risk analysis matrix where likelihood ranges from 1 to 5 and impact ranges from 1 to 5. A risk with a likelihood of 4 and an impact of 5 would fall into which risk level if the matrix defines high risk as scores above 15, medium as 10-15, and low as below 10?

A.Medium
B.Critical
C.High
D.Low
AnswerC

According to the company's qualitative risk analysis matrix, a risk score of 20 exceeds the established threshold of 15, which delineates the boundary for 'High' risk. This indicates that any risk with a numerical assessment equal to or greater than 15 is categorized into the 'High' severity level. Consequently, a score of 20 directly and correctly maps to a 'High' risk classification within this framework.

Why this answer

In qualitative risk analysis using a 5x5 matrix, the score is typically the product of likelihood and impact. 4 x 5 = 20, which is above 15, indicating high risk.

235
MCQmedium

Which physical security design principle emphasizes that the physical environment should be designed to discourage criminal activity by using natural surveillance, access control, and territorial reinforcement?

A.TEMPEST
B.Fail-safe
C.Layered defense
D.CPTED
AnswerD

Crime Prevention Through Environmental Design (CPTED) is a multidisciplinary approach that uses urban and architectural design to reduce the incidence and fear of crime, and improve the quality of life. It emphasizes manipulating the built environment to create a sense of ownership, increase natural surveillance, and define clear territorial boundaries. CPTED principles, such as natural access control, natural surveillance, and territorial reinforcement, directly focus on how physical design can proactively deter undesirable behavior and enhance security.

Why this answer

CPTED (Crime Prevention Through Environmental Design) uses architectural features to reduce crime.

236
MCQhard

During a risk assessment, a company identifies that its primary data center is located in a flood-prone area. The estimated annual loss expectancy (ALE) for a flood event is $500,000. Installing flood barriers costs $200,000 and reduces the ALE to $50,000. What is the net benefit of implementing the flood barriers?

A.$300,000
B.$250,000
C.$450,000
D.$200,000
AnswerB

Correct - reduction in ALE ($450,000) minus cost ($200,000) = $250,000.

Why this answer

The net benefit is calculated as the reduction in ALE minus the cost of the control. The original ALE is $500,000, and after implementing flood barriers the ALE drops to $50,000, a reduction of $450,000. Subtracting the $200,000 cost of the barriers yields a net benefit of $250,000.

This aligns with the CISSP risk management formula: Net Benefit = (ALE_old - ALE_new) - Cost_of_control.

Exam trap

The trap here is that candidates often forget to subtract the cost of the control from the reduction in ALE, leading them to select the $450,000 reduction as the net benefit instead of the correct $250,000.

How to eliminate wrong answers

Option A is wrong because $300,000 mistakenly subtracts the cost of the barriers from the original ALE ($500,000 - $200,000) without accounting for the residual ALE of $50,000. Option C is wrong because $450,000 represents only the reduction in ALE ($500,000 - $50,000) but ignores the $200,000 cost of implementing the flood barriers. Option D is wrong because $200,000 is simply the cost of the flood barriers and does not reflect any calculation of net benefit from risk reduction.

237
MCQhard

During a Kerberos authentication process, the client receives a Ticket Granting Ticket (TGT) from the Authentication Server (AS). Later, the client presents the TGT to the Ticket Granting Server (TGS) to request a service ticket. Which of the following best describes the purpose of the TGT?

A.It verifies the client's IP address to prevent replay attacks.
B.It allows the client to request additional service tickets without re-authentication.
C.It encrypts the session key between the client and the target service.
D.It authenticates the user to the target service directly.
AnswerB

The Ticket Granting Ticket (TGT) is a crucial component that facilitates single sign-on within a Kerberos realm. Once a client successfully authenticates to the Authentication Service (AS) and receives a TGT, this ticket serves as proof of their identity to the Ticket Granting Service (TGS). This allows the client to subsequently request service tickets for various network services without needing to re-enter their password or re-authenticate to the KDC for each new service.

Why this answer

The TGT is a credential that proves the user has been authenticated by the AS and is allowed to request service tickets without re-entering credentials.

238
MCQmedium

During an internal security assessment, a tester uses a tool to attempt to crack password hashes extracted from a domain controller. Which phase of the penetration testing process does this represent?

A.Reconnaissance
B.Reporting
C.Post-exploitation
D.Exploitation
AnswerC

Post-exploitation refers to the actions performed after initial access to a system has been successfully gained. This phase aims to escalate privileges, maintain persistence, pivot to other systems, and gather sensitive information, such as user credentials. Password cracking, often performed on collected hash files (e.g., from SAM database, /etc/shadow, or network traffic), is a common post-exploitation activity used to obtain plaintext passwords for further lateral movement or deeper system compromise.

Why this answer

C is correct because cracking password hashes extracted from a domain controller occurs after the tester has already gained access to the system. This activity is part of the post-exploitation phase, where the tester escalates privileges, extracts credentials, and moves laterally. In this context, the tester is using a tool like John the Ripper or Hashcat to crack NTLM hashes, which is a classic post-exploitation step to obtain plaintext passwords for further access.

Exam trap

The trap here is that candidates often confuse post-exploitation with exploitation, mistakenly thinking that cracking hashes is part of the initial exploitation phase, when in fact exploitation is the act of gaining access, and post-exploitation includes all activities performed after that access is achieved.

How to eliminate wrong answers

Option A is wrong because reconnaissance is the initial phase of gathering information about the target without direct interaction, such as scanning open ports or enumerating services, not cracking already extracted hashes. Option B is wrong because reporting is the final phase where findings are documented and presented to stakeholders, not during active technical testing. Option D is wrong because exploitation is the phase where vulnerabilities are actively used to gain initial access or execute code on a target; cracking hashes after access is obtained is a post-exploitation activity, not the initial exploitation event.

239
MCQeasy

Which of the following is a secure coding practice to prevent SQL injection attacks?

A.Escaping all user input
B.Using parameterized queries
C.Using stored procedures exclusively
D.Validating input length
AnswerB

Parameterized queries, also known as prepared statements, are a highly effective secure coding practice for preventing SQL injection. They work by defining the SQL query structure with placeholders for data, which are then passed separately to the database engine. This strict separation ensures that user-supplied input is always treated as data values, never as executable SQL code, thus neutralizing any embedded malicious commands.

Why this answer

Parameterized queries (also known as prepared statements) separate SQL code from data by using placeholders (e.g., '?' in ODBC/JDBC or ':param' in Oracle) that are bound to user-supplied values at execution time. This ensures that input is always treated as data, never as executable SQL syntax, effectively neutralizing SQL injection regardless of the input content.

Exam trap

The trap here is that candidates often confuse 'stored procedures' with being inherently secure, but the CISSP exam tests that stored procedures can still be vulnerable if they use dynamic SQL with concatenated input, whereas parameterized queries (or prepared statements) are the definitive defense.

How to eliminate wrong answers

Option A is wrong because escaping all user input is error-prone and context-dependent; different database systems require different escape characters (e.g., backslash in MySQL vs. doubling single quotes in SQL Server), and incomplete or incorrect escaping can still allow injection. Option C is wrong because stored procedures alone do not prevent SQL injection if they contain dynamic SQL built with string concatenation (e.g., EXECUTE IMMEDIATE in Oracle or sp_executesql with concatenated parameters in SQL Server). Option D is wrong because validating input length only restricts the size of the input, not its content; an attacker can still inject malicious SQL within a valid length limit (e.g., a 10-character string like '1 OR 1=1').

240
MCQeasy

A security architect is evaluating security models for a multilevel secure system. Which model enforces the * property (no write down) and is typically used for confidentiality?

A.Clark-Wilson
B.Brewer-Nash
C.Bell-LaPadula
D.Biba
AnswerC

Bell-LaPadula is a mandatory access control (MAC) model specifically designed to enforce confidentiality, primarily used in military and government systems. It prevents unauthorized disclosure of information by enforcing two key rules: the Simple Security Property ('no read down'), which states a subject cannot read an object with a higher security level, and the *-property ('no write up'), which states a subject cannot write to an object with a lower security level. This model is correct as it directly addresses confidentiality requirements.

Why this answer

The Bell-LaPadula model enforces the * (star) property, which prohibits subjects from writing to objects at a lower classification level (no write down). This property, combined with the simple security property (no read up), ensures that information cannot flow from higher to lower security levels, making it the standard model for enforcing confidentiality in multilevel secure systems.

Exam trap

ISC2 often tests the confusion between Bell-LaPadula (confidentiality, no write down) and Biba (integrity, no write up), leading candidates to mistakenly select Biba when the question specifies confidentiality.

How to eliminate wrong answers

Option A is wrong because the Clark-Wilson model focuses on integrity through well-formed transactions and separation of duty, not on confidentiality or the * property. Option B is wrong because the Brewer-Nash (Chinese Wall) model addresses conflict of interest by preventing access to competing datasets, not multilevel confidentiality with no write down. Option D is wrong because the Biba model enforces integrity via no write up and no read down, which is the inverse of Bell-LaPadula's confidentiality properties.

241
MCQhard

A security analyst is reviewing logs from multiple systems and needs to ensure that logs are tamper-proof and available for incident investigation. Which of the following is the BEST approach?

A.Use a cloud storage bucket with public read access
B.Store logs locally on each system with restricted permissions
C.Encrypt logs at the source and send via email to the security team
D.Centralize logs to a syslog server with cryptographic hashing and append-only access
AnswerD

Centralizing logs to a dedicated syslog server significantly enhances security by providing a single, hardened repository for all audit data, making it easier to monitor and analyze. Cryptographic hashing ensures the integrity of each log entry, detecting any unauthorized modifications or tampering attempts after creation. Combined with append-only access, which prevents deletion or alteration of historical records, this approach provides a robust, forensically sound audit trail critical for incident response and compliance.

Why this answer

Centralized log management with write-once, read-many (WORM) storage ensures log integrity and availability for investigation.

242
MCQhard

An organization discovers that a former employee's account is still active and has been used to access sensitive data. This is an example of which type of risk?

A.Orphaned account
B.Privilege escalation
C.Social engineering
D.Insider threat
AnswerA

An orphaned account is an active user account that no longer has an associated legitimate user, typically because the employee has left the organization but their account was not properly deprovisioned or disabled. This oversight creates a significant security vulnerability, as the account could be exploited by an attacker or the former employee themselves to gain unauthorized access to systems and data. The discovery of a former employee's active account directly indicates a failure in the organization's identity and access management offboarding process.

Why this answer

An orphaned account is one that remains active after an employee has left, posing a security risk.

243
MCQhard

A company is outsourcing its customer support operations to a third-party vendor. The vendor will have access to sensitive customer data. Which of the following should be the primary security requirement in the contract with the vendor?

A.The vendor must perform annual penetration testing.
B.The vendor must conduct background checks on all employees.
C.The vendor must provide a list of all subcontractors.
D.The vendor must comply with the company's security policies and standards.
AnswerD

This is the most comprehensive and fundamental requirement for any outsourced operation, ensuring the vendor adopts the same baseline security posture, controls, and risk management philosophy as the client. By mandating compliance with the company's established security policies and standards, the contract holistically covers all aspects of data protection, access control, incident response, and regulatory adherence. This approach directly aligns the vendor's security practices with the client's expectations and risk tolerance, providing a robust framework for protecting sensitive information.

Why this answer

The primary security requirement in a contract with a third-party vendor that accesses sensitive data is to mandate compliance with the company's security policies and standards. This ensures consistent and comprehensive protection across all aspects of vendor operations, including access controls, data handling, incident response, and oversight of subcontractors. Option A (annual penetration testing) is a valuable specific security control but not the overarching requirement; it should be part of the policies with which the vendor must comply.

Option B (background checks on employees) is an important personnel security measure but is typically a component of the company's security policies rather than the primary contractual requirement. Option C (providing a list of all subcontractors) is relevant for supply chain risk management, but again, the fundamental requirement is that the vendor adheres to the company's policies, which would include requirements for subcontractor disclosure and management. Therefore, policy compliance is the overarching contractual necessity that encompasses all other specific controls.

244
Matchingmedium

Match each PKI component to its function.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Issues and revokes certificates

Verifies identity before certificate issuance

List of revoked certificates

Binds a public key to an identity

Why these pairings

In PKI, the CA issues and signs certificates, the RA verifies identities, the repository stores certificates for retrieval, and the CRL tracks revoked certificates. Common confusions involve mixing the roles of CA and RA or CA and repository.

245
MCQhard

A large financial institution is migrating its core banking system to a private cloud. The architecture must protect against data leakage between different business units sharing the same physical infrastructure. The system uses a hypervisor and virtual machines. Each business unit has its own security classification. The security requirement is that no VM belonging to a lower classification should be able to read data from a higher classification VM, even if the hypervisor is compromised. The architect proposes using mandatory access control at the hypervisor level. However, the IT team notes that a hypervisor compromise could bypass MAC. Additionally, they need to ensure that data at rest is encrypted and keys are stored securely. Which of the following would BEST meet the requirement?

A.Implement network segmentation with VLANs and IPsec encryption between VMs.
B.Deploy a data loss prevention (DLP) system to monitor data transfers between VMs.
C.Use a public key infrastructure (PKI) to issue certificates for each VM and enforce mutual TLS for all inter-VM communication.
D.Use a hardware security module (HSM) to manage keys and implement full memory encryption using AES-256 with integrity protection, and use a trusted execution environment (TEE) for each VM, ensuring that even the hypervisor cannot access VM memory.
AnswerD

This option provides comprehensive protection against a compromised hypervisor by leveraging hardware-level security. A Trusted Execution Environment (TEE), such as Intel SGX or AMD SEV, creates a hardware-enforced isolated execution space for each VM, encrypting its memory and CPU state such that even the hypervisor cannot access it in plaintext. Full memory encryption with AES-256 and integrity protection further secures data in use, while a Hardware Security Module (HSM) securely manages the cryptographic keys, ensuring their protection from the compromised hypervisor.

Why this answer

It addresses the core requirement: preventing data leakage even if the hypervisor is compromised. By using a hardware security module (HSM) for key management, full memory encryption with AES-256 and integrity protection, and a trusted execution environment (TEE) for each VM, the solution ensures that VM memory is encrypted and isolated at the hardware level. The hypervisor, even if compromised, cannot access the decrypted memory of a VM, thus enforcing the security classification separation regardless of hypervisor integrity.

Exam trap

The trap here is that candidates often focus on network-level controls (like encryption or segmentation) and overlook the requirement that protection must hold even when the hypervisor is compromised, which demands hardware-enforced memory isolation rather than software-only solutions.

How to eliminate wrong answers

Option A is wrong because network segmentation with VLANs and IPsec only protects data in transit between VMs, not data at rest in memory, and a compromised hypervisor could still read VM memory directly, bypassing network controls. Option B is wrong because a data loss prevention (DLP) system is a detective control that monitors data transfers but does not prevent a compromised hypervisor from reading VM memory; it cannot enforce access control at the hardware or memory level. Option C is wrong because mutual TLS with PKI certificates only secures inter-VM communication over the network, but does not protect VM memory from a compromised hypervisor that can read memory directly, bypassing network encryption.

246
MCQeasy

What is the primary purpose of a configuration management database (CMDB) in asset management?

A.Monitor network traffic for anomalies
B.Store and manage data classification labels
C.Track software licenses and compliance
D.Provide a repository of configuration items and their relationships
AnswerD

The fundamental purpose of a Configuration Management Database (CMDB) is to serve as a centralized repository for all relevant information about Configuration Items (CIs) within an IT environment. CIs encompass any component, service, or other asset that needs to be managed to deliver an IT service, such as servers, applications, networks, and documentation. Crucially, the CMDB also meticulously maps the interdependencies and relationships between these CIs, providing a holistic view that is vital for impact analysis, incident resolution, and change management processes.

Why this answer

A CMDB is used to store information about configuration items (CIs) and their relationships, helping manage IT assets and their interdependencies.

247
MCQhard

A security engineer is reviewing the architecture of a system that uses the Bell-LaPadula model. The system has subjects with security clearances and objects with classifications. To prevent covert timing channels, which additional control should be implemented?

A.Enforce strict data labeling
B.Implement audit logging
C.Disable concurrent access to shared resources
D.Use encryption for data at rest
AnswerC

Disabling or severely limiting concurrent access to shared system resources is a highly effective mitigation strategy against covert timing channels. These channels fundamentally rely on two or more processes interacting with a shared resource, where one process modulates the resource's state and another observes the resulting timing variations to infer information. By eliminating or restricting concurrency, the opportunity for one process to influence the timing observable by another through a shared medium is significantly reduced, thereby closing a primary avenue for such covert communication.

Why this answer

Covert timing channels exploit the ability of a subject to modulate the timing of its access to a shared resource, thereby leaking information to another subject at a different security level. The Bell-LaPadula model enforces mandatory access control (MAC) but does not inherently prevent these channels. Disabling concurrent access to shared resources (option C) eliminates the ability to use timing variations as a signaling mechanism, directly addressing the covert channel at the resource scheduling level.

Exam trap

The trap here is that candidates confuse covert timing channels with covert storage channels (which involve writing data to a shared attribute) and incorrectly choose audit logging or encryption as a catch-all solution, rather than recognizing that timing channels require controlling the concurrency of resource access.

How to eliminate wrong answers

Option A is wrong because strict data labeling is a fundamental requirement of the Bell-LaPadula model itself (it enforces the *-property and simple security property) and does not address the temporal modulation of resource access that defines a timing channel. Option B is wrong because audit logging records events after they occur and cannot prevent the real-time signaling that a covert timing channel exploits; it is a detective, not a preventive, control. Option D is wrong because encryption for data at rest protects the confidentiality of stored data but has no effect on the timing of access to shared resources, which is the mechanism of a covert timing channel.

248
MCQmedium

An organization is transitioning from waterfall to agile development. How should security be integrated into the new process to align with the SDLC?

A.Perform a single security review at the end of the release cycle
B.Conduct security testing only during the integration phase
C.Skip threat modeling and rely solely on automated scanning
D.Include security requirements in user stories and conduct threat modeling each iteration
AnswerD

This embeds security into agile practices.

Why this answer

In agile development, security must be integrated continuously throughout each iteration, not deferred to the end. Option D is correct because it embeds security into the user story definition (including acceptance criteria for security requirements) and mandates threat modeling each iteration, which aligns with the iterative, incremental nature of agile and ensures security is addressed early and often, reducing risk and rework.

Exam trap

The trap here is that candidates mistakenly think security can be 'bolted on' at the end or only during specific phases, failing to recognize that agile demands security be woven into every iteration through practices like threat modeling and security user stories.

How to eliminate wrong answers

Option A is wrong because performing a single security review at the end of the release cycle is a waterfall practice that violates agile principles; it introduces security too late, making fixes costly and delaying releases. Option B is wrong because conducting security testing only during the integration phase ignores the need for continuous security validation throughout development, including unit testing and static analysis in earlier phases, and misses the opportunity to catch vulnerabilities early. Option C is wrong because skipping threat modeling and relying solely on automated scanning leaves the system vulnerable to business logic flaws, design-level threats, and context-dependent attacks that automated tools cannot detect; threat modeling is essential for identifying and mitigating these risks proactively.

249
MCQhard

An organization discovers that an employee has been using a personal cloud storage account to share confidential files. After revoking access, what is the NEXT best step to prevent recurrence?

A.Block access to all cloud storage sites
B.Deploy a data loss prevention (DLP) solution
C.Discipline the employee
D.Retrain all employees on data handling policy
AnswerB

Deploying a Data Loss Prevention (DLP) solution is the most effective and proactive technical control for preventing unauthorized data exfiltration. DLP systems identify sensitive data based on content, context, and metadata, then monitor and block its transfer across various egress points, including email, cloud services, removable media, and network protocols. This provides continuous, policy-driven protection against both accidental and malicious data loss, ensuring compliance and safeguarding critical information assets.

Why this answer

Deploying a Data Loss Prevention (DLP) solution is the next best step because it provides automated, policy-based monitoring and control of data in motion, at rest, and in use. DLP can inspect content for sensitive patterns (e.g., credit card numbers, proprietary file headers) and block unauthorized transfers to personal cloud storage, addressing the root cause of the incident rather than relying on manual enforcement.

Exam trap

The trap here is that candidates often choose retraining (D) because it seems like a proactive people-focused control, but the CISSP emphasizes that technical controls (like DLP) are necessary to enforce policy and prevent recurrence, especially after a security incident involving data exfiltration.

How to eliminate wrong answers

Option A is wrong because blocking all cloud storage sites is an overly restrictive, reactive measure that can hinder legitimate business operations and is easily bypassed by employees using encrypted tunnels or alternative services. Option C is wrong because disciplining the employee addresses the individual but does not implement a technical control to prevent recurrence across the organization. Option D is wrong because retraining alone is insufficient; without technical enforcement, employees may still inadvertently or deliberately violate policy, and training does not detect or block future violations in real time.

250
MCQeasy

An organization is implementing a new access control system. Which of the following represents the correct order of the AAA framework components?

A.Authentication, Authorization, Accounting
B.Authorization, Authentication, Accounting
C.Authentication, Accounting, Authorization
D.Accounting, Authentication, Authorization
AnswerA

This sequence correctly represents the foundational AAA framework. Authentication verifies the user's identity, establishing 'who you are.' Subsequently, Authorization determines the specific resources or actions the authenticated user is permitted to access, defining 'what you can do.' Finally, Accounting meticulously logs all user activities and resource consumption, providing a record of 'what you did' for auditing and accountability.

Why this answer

The AAA framework stands for Authentication, Authorization, and Accounting, in that order. First, a user's identity is verified, then permissions are checked, and finally activities are logged.

251
Multi-Selectmedium

Your organization is forming an incident response team (IRT). According to NIST SP 800-61, which TWO roles are considered core to the incident response team?

Select 2 answers
A.Public Relations
B.Technical Lead
C.Manager
D.Legal Counsel
E.Human Resources
AnswersB, C

The Technical Lead is an absolutely core role within an Incident Response Team, providing critical hands-on expertise and strategic direction for technical incident handling. This individual drives forensic analysis, identifies the root cause of the incident, develops containment strategies, and oversees eradication and recovery efforts. Their deep technical knowledge is essential for effectively understanding and mitigating the impact of security breaches.

Why this answer

NIST SP 800-61 Rev. 2 identifies the Team Manager and the Technical Lead as core roles within an incident response team. The Manager oversees the response process, allocates resources, and coordinates communication, while the Technical Lead drives the technical analysis, containment, and eradication efforts. These two roles are essential for both strategic direction and hands-on technical execution during an incident.

Exam trap

The trap here is that candidates often confuse 'supporting roles' (like PR, Legal, HR) with 'core roles,' but NIST SP 800-61 strictly limits core IRT to Manager and Technical Lead to ensure rapid, focused technical response without bureaucratic delays.

252
MCQeasy

Which of the following is a key component of the rules of engagement for a penetration test?

A.Use of only automated tools
B.Guarantee of no system disruption
C.Written authorization from management
D.Identification of all vulnerabilities
AnswerC

Written authorization from management is a paramount and non-negotiable component of the Rules of Engagement (RoE) for any security assessment. This formal documentation provides explicit legal and ethical permission to conduct activities that might otherwise be considered unauthorized access or a criminal act, clearly defining the scope, targets, and duration of the engagement and protecting both the assessors and the organization from liability.

Why this answer

Rules of engagement must include written authorization, scope, and emergency stop criteria.

253
MCQeasy

Which IPsec protocol provides both authentication and encryption of the packet payload, but does not encrypt the IP header?

A.AH in transport mode
B.ESP in transport mode
C.AH in tunnel mode
D.ESP in tunnel mode
AnswerB

Encapsulating Security Payload (ESP) in transport mode encrypts the IP payload to ensure confidentiality while also providing integrity and authentication for the payload and ESP headers. This mode is highly efficient for direct host-to-host communication because it secures the upper-layer data without the overhead of a new IP header.

Why this answer

ESP in transport mode encrypts the payload and provides authentication (via an optional ICV), but it does not encrypt the IP header. This matches the question's requirement of payload authentication and encryption without header encryption. In contrast, AH authenticates the entire packet (including the IP header) but provides no encryption.

Exam trap

The trap here is that candidates often confuse 'encryption of the payload' with 'encryption of the entire packet,' leading them to choose ESP in tunnel mode, which encrypts the inner IP header, or AH, which provides no encryption at all.

How to eliminate wrong answers

Option A is wrong because AH in transport mode provides authentication of the payload and parts of the IP header, but it does not offer any encryption of the payload. Option C is wrong because AH in tunnel mode authenticates the entire inner IP packet and parts of the outer header, but still lacks encryption. Option D is wrong because ESP in tunnel mode encrypts the entire inner IP packet (including the inner header), which goes beyond the question's requirement of not encrypting the IP header (the outer header remains unencrypted, but the inner header is encrypted, making it incorrect for the specific condition stated).

254
MCQmedium

A financial application uses a third-party library for PDF generation. A security review finds that the library is no longer maintained and has known vulnerabilities. What is the BEST course of action?

A.Restrict network access to the PDF server.
B.Encrypt all PDF files after generation.
C.Implement a web application firewall to block attacks targeting the library.
D.Replace the library with a maintained alternative.
AnswerD

Replacing the vulnerable third-party library with a well-maintained and secure alternative directly addresses the root cause of the security flaw. This action permanently removes the insecure code from the application's codebase, thereby eliminating the specific vulnerability that could be exploited. This proactive remediation strategy is the most effective way to ensure the long-term security and integrity of the financial application against this particular threat.

Why this answer

The best course of action because replacing the library with a maintained alternative directly addresses the root cause of using an unmaintained library with known vulnerabilities. Option A is not the best because restricting network access reduces exposure but does not fix the underlying vulnerabilities. Option B is not the best because encrypting PDF files protects the content but does not prevent exploitation of the library.

Option C is not the best because a web application firewall can mitigate some attacks but is not a comprehensive solution for known vulnerabilities in the library.

255
MCQeasy

Which document provides detailed step-by-step instructions for performing a specific security task?

A.Policy
B.Procedure
C.Standard
D.Guideline
AnswerB

A procedure is a mandatory, detailed set of step-by-step instructions that describes *how* to perform a specific task or process consistently and securely. It outlines the exact actions to be taken, the order in which they should occur, and often specifies roles, responsibilities, and tools required. Procedures ensure uniformity, repeatability, and compliance with established policies and standards, directly addressing the need for explicit operational guidance for security functions.

Why this answer

A procedure is a detailed, step-by-step document that describes how to perform a task.

256
MCQeasy

A small business wants to ensure compliance with GDPR for its customer data. What is the initial action required to comply with GDPR?

A.Obtain consent from all data subjects
B.Implement pseudonymization techniques
C.Conduct a Data Protection Impact Assessment (DPIA)
D.Map data flows and identify personal data
AnswerD

Mapping data flows and identifying personal data is the crucial foundational step for any GDPR compliance program. This process involves creating a comprehensive inventory of all personal data an organization collects, processes, stores, and shares, including its origin, destination, purpose, and legal basis. This initial understanding of the data landscape is essential for assessing risks, implementing appropriate safeguards, and demonstrating accountability under GDPR.

Why this answer

Before implementing controls or appointing a DPO, the organization must first understand what data it processes and where it flows. Mapping data flows and identifying personal data is the foundational step for all subsequent compliance activities.

257
Multi-Selectmedium

A security architect is designing a system that must ensure integrity of commercial transactions. Which of the following models are specifically focused on integrity? (Choose TWO)

Select 2 answers
A.Take-Grant
B.Brewer-Nash
C.Biba
D.Clark-Wilson
E.Bell-LaPadula
AnswersC, D

Biba is a formal state-machine model designed specifically to protect data integrity by preventing unauthorized modification. It operates on the principle of "no write up, no read down" to ensure that information from lower-integrity levels cannot contaminate higher-integrity levels. This makes it the ideal choice for a system where preventing data corruption and maintaining trustworthiness is the primary objective.

Why this answer

Biba is an integrity model using no write up/no read down. Clark-Wilson is a commercial integrity model based on well-formed transactions and separation of duties.

258
MCQmedium

An organization is implementing a Public Key Infrastructure (PKI) to support secure email and web communications. The PKI includes a root CA, intermediate CAs, and end-entity certificates. Which of the following best describes the role of the root CA in this hierarchy?

A.It performs key escrow for all users
B.It issues certificates directly to end users
C.It validates certificate revocation lists (CRLs)
D.It is self-signed and forms the trust anchor
AnswerD

The root CA's certificate is uniquely self-signed, meaning its public key is used to verify a signature created by its own private key, making it inherently self-authenticating. This self-signed certificate is then manually or automatically distributed and pre-installed as a trusted root in operating systems and applications. It serves as the ultimate trust anchor, the foundational point from which all other certificates in the PKI hierarchy derive their trustworthiness and validity.

Why this answer

The root CA is the top-level entity that signs its own certificate (self-signed) and issues certificates to intermediate CAs. It is the trust anchor for the entire PKI.

259
MCQeasy

Which phase of the data lifecycle includes the act of securely deleting data that is no longer needed, in accordance with retention policies?

A.Store
B.Share
C.Archive
D.Destroy
AnswerD

The Destroy phase is the critical final stage of the data lifecycle, specifically encompassing the secure and irreversible removal of data from all storage media. This involves employing methods like degaussing, cryptographic erasure, or physical destruction (e.g., shredding, pulverizing) to ensure data cannot be reconstructed or recovered. This phase directly addresses the act of secure deletion, preventing unauthorized access after data's useful life has ended.

Why this answer

The destroy phase involves secure disposal of data when it is no longer required, often through purging or destruction.

260
MCQmedium

A company uses a SIEM to correlate logs from multiple sources. Which log source is most critical for detecting privilege escalation attacks?

A.Authentication logs
B.DNS logs
C.Firewall logs
D.Web server logs
AnswerA

Authentication logs are paramount for detecting security incidents like privilege escalation because they meticulously record all login attempts, account lockouts, password changes, and user role modifications across operating systems, applications, and directory services. A Security Information and Event Management (SIEM) system correlates these granular events to identify suspicious patterns, such as multiple failed login attempts followed by a successful one from an unusual location, or unauthorized privilege assignments, which are direct indicators of a potential account compromise or escalation.

Why this answer

Authentication logs are most critical for detecting privilege escalation attacks because they record user identity changes, such as the use of 'su' or 'sudo' commands, and account modifications like group membership changes. A SIEM can correlate these events with other logs to identify anomalous privilege transitions, such as a standard user suddenly acquiring administrative rights, which is a hallmark of privilege escalation.

Exam trap

The trap here is that candidates often choose firewall logs or DNS logs because they associate them with detecting attacks in general, but the question specifically targets privilege escalation, which requires logs that capture user identity and privilege changes, not network-level events.

How to eliminate wrong answers

Option B (DNS logs) is wrong because DNS logs primarily track domain name resolution queries and are useful for detecting command-and-control (C2) traffic or data exfiltration, not direct privilege escalation events. Option C (Firewall logs) is wrong because firewall logs record network traffic allowed or blocked based on IP addresses and ports, which can indicate lateral movement but do not capture the user-level account changes or privilege transitions that define privilege escalation. Option D (Web server logs) is wrong because web server logs record HTTP requests and responses, which are valuable for detecting web application attacks like SQL injection or cross-site scripting, but they do not directly log operating system-level privilege changes or authentication events.

261
MCQhard

A financial institution stores customer PII, including Social Security numbers (SSNs). Under privacy regulations, SSNs are considered sensitive PII. Which of the following techniques would best reduce the risk of re-identification while preserving the utility of the data for statistical analysis?

A.Anonymization by removing all direct identifiers
B.Encrypting the entire dataset at rest
C.Differential privacy by adding calibrated noise to the dataset
D.Pseudonymization by replacing names with random identifiers
AnswerC

Differential privacy offers a strong, mathematically provable guarantee of privacy by introducing carefully calibrated noise into the dataset or query results. This noise ensures that the presence or absence of any single individual's data point does not significantly alter the output, making it extremely difficult for an adversary to infer specific individual attributes, even with substantial auxiliary information. It allows for aggregate statistical analysis while rigorously protecting individual privacy against sophisticated re-identification attempts.

Why this answer

Differential privacy adds noise to query results to protect individual records while allowing aggregate analysis, balancing privacy and utility.

262
MCQeasy

Which metric defines the maximum amount of data loss an organization can tolerate during a disaster?

A.RPO
B.MTD
C.MTTR
D.RTO
AnswerA

The Recovery Point Objective (RPO) specifies the maximum acceptable amount of data that an organization can afford to lose following a disruption. This metric is typically expressed as a time interval, such as 'data loss not exceeding the last four hours' or 'no more than one day's worth of transactions.' It directly influences the frequency of data backups, snapshots, or replication strategies required to meet this business continuity target.

Why this answer

Recovery Point Objective (RPO) determines the acceptable data loss measured in time.

263
MCQhard

Your organization is a medium-sized e-commerce company with a hybrid infrastructure: on-premises datacenter and AWS cloud. The security team recently conducted an internal vulnerability scan of the on-premises network and discovered multiple critical vulnerabilities in a legacy ERP system that cannot be patched because the vendor no longer supports it. The ERP system is essential for order processing and cannot be decommissioned. The team also ran a penetration test against the cloud environment and found that an attacker with network access could leverage misconfigured security groups to move laterally between instances. The company has a risk appetite that allows for limited risk acceptance with compensating controls. As the senior security analyst, what is the BEST course of action?

A.Immediately isolate the legacy ERP system from the network and implement a manual workaround for order processing.
B.Decommission the legacy ERP system and migrate to a modern alternative, accepting a temporary disruption in operations.
C.Accept the risk for both findings and document them in the risk register without additional controls.
D.Apply virtual patching via an intrusion prevention system (IPS) for the ERP vulnerabilities and implement stricter security group rules in the cloud to restrict lateral movement.
AnswerD

Virtual patching and network segmentation provide effective compensating controls that reduce risk while maintaining operations.

Why this answer

The best course of action because it applies compensating controls to reduce risk without disrupting operations. Virtual patching via an IPS mitigates the unpatched ERP vulnerabilities, while stricter security group rules limit lateral movement in the cloud. This aligns with the organization's risk appetite for limited risk acceptance with compensating controls.

Option A is too disruptive, Option B would cause unacceptable operational disruption, and Option C fails to implement any controls.

264
Multi-Selectmedium

Which TWO of the following are characteristics of a SOC 2 Type II report?

Select 2 answers
A.Covers the design and operating effectiveness of controls over a period of time
B.Is a public summary report available to anyone
C.Includes trust service criteria such as security, availability, and confidentiality
D.Focuses only on financial reporting controls
E.Evaluates controls at a single point in time
AnswersA, C

A SOC 2 Type II report provides an opinion on the suitability of the design of controls and their operating effectiveness throughout a specified reporting period, typically 6-12 months. This extended observation period offers a higher level of assurance regarding the consistent application and performance of a service organization's system and controls. It demonstrates sustained adherence to the Trust Service Criteria, which is crucial for user entities relying on these services.

Why this answer

SOC 2 Type II reports assess controls over a period of time and cover trust service criteria including security and availability.

265
MCQhard

During a penetration test, the tester gains initial access to a server and then attempts to pivot to other systems. Which phase of the penetration testing process does this represent?

A.Post-exploitation/lateral movement
B.Reconnaissance
C.Exploitation
D.Reporting
AnswerA

After gaining initial access, the penetration tester enters the post-exploitation phase. This involves actions like privilege escalation on the compromised system, establishing persistence to maintain access, and then pivoting to other systems within the network. Lateral movement aims to expand the tester's control and reach additional valuable assets beyond the initial foothold, demonstrating the potential impact of a breach.

Why this answer

Post-exploitation/lateral movement involves leveraging initial access to move within the network.

266
MCQeasy

A security auditor is reviewing the results of a recently completed internal vulnerability scan. The scan report shows several hosts with the same vulnerability. Which of the following actions should the auditor take FIRST?

A.Manually verify the vulnerability on a sample of affected hosts.
B.Immediately apply patches to all affected hosts.
C.Remove the hosts from the network until the vulnerability is resolved.
D.Re-run the scan with a different scanner.
AnswerA

An auditor's primary role includes validating findings to ensure accuracy and reduce the risk of acting on erroneous information. Manually verifying a sample of affected hosts directly confirms the vulnerability's existence and helps differentiate between actual threats and potential false positives from automated scans. This targeted approach ensures that subsequent remediation efforts are focused on legitimate security concerns, preventing unnecessary resource expenditure and potential system disruption.

Why this answer

The auditor must first manually verify the vulnerability on a sample of affected hosts because automated vulnerability scans can produce false positives due to factors like incomplete banner grabbing, outdated plugin signatures, or network-level interference. Confirming the finding ensures that subsequent remediation efforts are based on accurate, validated data, preventing wasted resources on non-existent issues.

Exam trap

The trap here is that candidates may assume automated scan results are always accurate and jump to remediation (Option B) or isolation (Option C), failing to recognize that the first step in the assessment process is to validate findings to avoid acting on false positives.

How to eliminate wrong answers

Option B is wrong because immediately applying patches without verification risks introducing instability or breaking functionality if the vulnerability is a false positive, and it bypasses the change management process required in a secure environment. Option C is wrong because removing hosts from the network is an overly drastic and disruptive response that should only be considered after the vulnerability is confirmed and the risk is assessed as critical, not as a first step. Option D is wrong because re-running the scan with a different scanner does not address the need for manual validation; it merely repeats an automated process that may still produce false positives due to inherent scanner limitations.

267
MCQeasy

A security architect is selecting an access control model for a system that must prevent users from reading objects at a higher classification level. Which model enforces this property?

A.Bell-LaPadula
B.Clark-Wilson
C.Biba
D.Brewer-Nash
AnswerA

The Bell-LaPadula model is a state machine model primarily concerned with confidentiality, designed to prevent unauthorized disclosure of information. It enforces the "simple security property" (no read-up) and the "*-property" (no write-down), ensuring that subjects at a given security level cannot read objects at a higher level or write to objects at a lower level. This strict hierarchical control is ideal for environments where preventing unauthorized disclosure of classified information is paramount, such as military or government systems requiring multi-level security.

Why this answer

The Bell-LaPadula model enforces mandatory access control (MAC) with the *-property (no write-down) and the simple security property (no read-up). The question specifically asks to prevent reading objects at a higher classification level, which is exactly the 'no read-up' rule of Bell-LaPadula. This model is designed for confidentiality-focused systems, such as military or government classified environments.

Exam trap

The trap here is that candidates often confuse the Biba model (integrity, no read-down) with Bell-LaPadula (confidentiality, no read-up), so they incorrectly select Biba when the question explicitly asks about preventing reading at a higher classification level.

How to eliminate wrong answers

Option B (Clark-Wilson) is wrong because it focuses on integrity and enforces separation of duties and well-formed transactions, not on preventing read-up based on classification levels. Option C (Biba) is wrong because it is an integrity model that prevents subjects from writing to higher integrity levels (no write-up) and reading from lower integrity levels (no read-down), which is the opposite of the confidentiality requirement in the question. Option D (Brewer-Nash) is wrong because it is designed to prevent conflicts of interest (Chinese Wall model) by dynamically controlling access based on previously accessed datasets, not by enforcing static classification levels.

268
MCQeasy

An organization is developing an incident response plan. Which component is responsible for defining the specific conditions that constitute an incident?

A.Communication plan
B.Recovery procedures
C.Legal notification requirements
D.Incident categories
AnswerD

Incident categories establish predefined classifications and criteria that help an organization determine whether a particular event constitutes a security incident requiring formal response. These categories, such as "malware infection," "unauthorized access," "denial of service," or "data exfiltration," provide clear definitions and often include specific indicators or thresholds. By categorizing events, organizations can standardize incident identification, prioritize response efforts, and ensure consistent handling based on the nature and potential impact of the security breach.

Why this answer

Incident categories define what events are considered incidents, enabling consistent classification and response.

269
MCQeasy

Which type of data is considered sensitive PII and requires enhanced protection?

A.Name and email address
B.Job title
C.Phone number
D.Social Security number
AnswerD

A Social Security number (SSN) is unequivocally considered sensitive PII due to its direct linkage to an individual's financial, medical, and governmental records. Its compromise presents an extremely high risk of identity theft, financial fraud, and other severe personal harm. Consequently, SSNs require the most stringent security controls and regulatory protections to safeguard individuals from significant adverse impacts.

Why this answer

Sensitive PII includes information that could cause serious harm if disclosed, such as Social Security numbers, biometric data, and medical records.

270
MCQmedium

A hospital chain collects and stores electronic health records (EHR) for millions of patients. The EHR system is hosted in a private cloud and accessed by doctors, nurses, and administrative staff from various locations. Recently, an internal audit found that several employees shared their login credentials with colleagues to expedite workflows. The hospital must comply with HIPAA and state privacy laws. The security officer wants to implement a solution that minimizes the risk of unauthorized access due to shared credentials while still allowing efficient access for patient care. Which of the following is the BEST approach?

A.Implement single sign-on (SSO) integrated with role-based access control (RBAC) and enforce audit logging of all access
B.Enforce a policy requiring password changes every 30 days and complexity requirements
C.Replace passwords with biometric authentication (fingerprint and iris scans) for all users
D.Disable remote access to the EHR system and require all access to occur only from within the hospital's LAN
AnswerA

Single Sign-On (SSO) centralizes authentication, significantly reducing password fatigue and the associated risk of users resorting to insecure practices like writing down or sharing credentials. Integrated Role-Based Access Control (RBAC) ensures that users are granted only the minimum necessary privileges to perform their job functions, directly enforcing the principle of least privilege and preventing unauthorized access to sensitive EHR data. Furthermore, comprehensive audit logging creates an immutable record of all system access and data interactions, establishing clear accountability and providing a strong deterrent against credential sharing or misuse, as all actions are traceable.

Why this answer

SSO integrated with RBAC reduces the attack surface of shared credentials by centralizing authentication and enforcing least-privilege access based on job roles. Audit logging provides non-repudiation and traceability, which deters credential sharing and satisfies HIPAA's requirement to track access to ePHI. This combination directly addresses the root cause (shared credentials) while maintaining workflow efficiency through seamless authentication.

Exam trap

The trap here is that candidates often choose biometric authentication (C) thinking it eliminates credential sharing, but they overlook that biometrics can be bypassed or shared (e.g., a user holding a fingerprint scanner for a colleague) and introduce significant privacy and revocation challenges under HIPAA.

How to eliminate wrong answers

Option B is wrong because frequent password changes and complexity requirements do not prevent credential sharing; they often increase user frustration, leading to even more sharing or insecure storage. Option C is wrong because biometric authentication introduces privacy and usability concerns (e.g., false rejection rates, inability to revoke compromised biometrics) and does not inherently prevent users from sharing a single enrolled device or bypassing the system. Option D is wrong because disabling remote access severely impacts patient care and operational efficiency, and it does not address the core issue of credential sharing among authorized users within the LAN.

271
MCQeasy

A company wants to ensure that its security policy is effectively enforced across all departments. Currently, the policy is published on the intranet and included in the employee handbook. However, the security team notices that many employees are not following the policy, leading to security incidents. Which of the following would be the most effective way to improve policy enforcement?

A.Include the policy in the employee handbook
B.Require annual signed acknowledgment of the policy
C.Conduct random audits and penalize non-compliance
D.Publish the policy on the intranet only
AnswerB

Requiring annual signed acknowledgment of the security policy is a highly effective method to ensure policy effectiveness. This active engagement process mandates that employees formally confirm they have read, understood, and agree to abide by the policy, creating a clear audit trail and establishing individual accountability. It significantly strengthens the organization's legal standing in cases of non-compliance, demonstrating due diligence in communication.

Why this answer

Requiring annual signed acknowledgment ensures that employees are aware of and agree to comply with the policy. This creates a record of acceptance and can be used in disciplinary actions. Publishing on intranet or handbook alone does not guarantee reading or acceptance.

Random audits with penalties may enforce compliance but without awareness, employees may not know what is expected.

272
MCQmedium

A security architect is designing a cryptographic system for a high-security environment where data must be encrypted both at rest and in transit, with granular access control. The system must be efficient for large volumes of data. Which approach is most appropriate?

A.Use symmetric encryption (e.g., AES-256) for all data and share keys out-of-band.
B.Use only asymmetric encryption (e.g., RSA) for all data.
C.Use asymmetric encryption for key exchange and symmetric encryption for data (hybrid cryptosystem).
D.Use hash functions (e.g., SHA-256) to ensure confidentiality.
AnswerC

A hybrid cryptosystem is the industry standard because it leverages the strengths of both symmetric and asymmetric encryption while mitigating their individual weaknesses. Asymmetric encryption, such as RSA or ECC, is used to securely exchange a temporary symmetric 'session key,' which is then used by symmetric algorithms like AES-256 for efficient bulk data encryption. This approach ensures secure key establishment without the performance overhead of asymmetric encryption for the actual data transfer, providing both confidentiality and efficiency.

Why this answer

A hybrid cryptosystem combines the efficiency of symmetric encryption (e.g., AES-256) for bulk data encryption with the secure key distribution of asymmetric encryption (e.g., RSA or ECDH). This approach ensures strong confidentiality for large volumes of data at rest and in transit, while enabling granular access control through per-user or per-session key management.

Exam trap

The trap here is that candidates may choose symmetric encryption alone (Option A) because it is fast, overlooking the critical need for secure key distribution and granular access control that only a hybrid system provides.

How to eliminate wrong answers

Option A is wrong because sharing symmetric keys out-of-band is impractical and insecure for large-scale, high-security environments; it lacks scalability and does not support granular access control without a secure key distribution mechanism. Option B is wrong because asymmetric encryption alone is computationally expensive and impractically slow for encrypting large volumes of data, making it unsuitable for bulk encryption. Option D is wrong because hash functions (e.g., SHA-256) are one-way and provide data integrity, not confidentiality; they cannot encrypt data or protect it from disclosure.

273
MCQmedium

A network analyst suspects a host on the internal network is sending abnormal amounts of traffic. Which tool should be used to capture and analyze the packets?

A.Wireshark
B.Nmap
C.Netstat
D.Traceroute
AnswerA

Wireshark is a powerful network protocol analyzer that captures and interactively displays the contents of network packets in real-time or from saved capture files. When suspecting a host, Wireshark allows an analyst to perform deep packet inspection, revealing the exact protocols, source/destination IPs, port numbers, and even the payload data, which is critical for identifying anomalous traffic patterns, malware communication, or unauthorized data transfers originating from or destined for that specific host.

Why this answer

Wireshark is the correct tool because it is a packet analyzer that captures live network traffic and provides deep inspection of individual packets, including headers and payloads. This allows the analyst to examine the abnormal traffic patterns, identify source/destination IPs, protocols, and payload content to diagnose the issue.

Exam trap

The trap here is that candidates often confuse Nmap's ability to send and receive packets for scanning with actual packet capture and analysis, but Nmap does not provide the deep packet inspection or continuous capture that Wireshark offers.

How to eliminate wrong answers

Option B (Nmap) is wrong because Nmap is a network scanning tool used for host discovery, port scanning, and service enumeration, not for capturing and analyzing live packet traffic. Option C (Netstat) is wrong because Netstat displays active network connections, routing tables, and interface statistics, but it does not capture or analyze packet contents. Option D (Traceroute) is wrong because Traceroute is a diagnostic tool that maps the path packets take to a destination by manipulating TTL values, not for capturing or analyzing packet payloads.

274
Multi-Selecteasy

Which TWO of the following are benefits of authenticated vulnerability scanning compared to unauthenticated scanning?

Select 2 answers
A.Can detect vulnerabilities that require valid credentials to be seen
B.Reduces network traffic
C.Eliminates false positives entirely
D.Provides more accurate patch-level information
E.Does not require network access
AnswersA, D

Authenticated scans operate with valid credentials, allowing them to access the internal configuration, file systems, and running processes of a target system. This deep access enables the detection of vulnerabilities that are only visible post-authentication, such as misconfigurations in internal services, insecure file permissions, or unpatched software versions that an unauthenticated scan might miss entirely.

Why this answer

Authenticated scans have deeper access, allowing them to detect vulnerabilities that require valid credentials, such as missing patches and configuration issues.

275
Multi-Selecteasy

Which TWO of the following are characteristics of a VPN that uses TLS?

Select 2 answers
A.Provides confidentiality
B.Requires a digital certificate on the server
C.Provides integrity
D.Operates at the network layer
E.Typically uses UDP port 500
AnswersA, C

A core characteristic of a VPN, particularly those utilizing protocols like TLS (Transport Layer Security) or IPsec, is the establishment of a secure, encrypted tunnel. This encryption process, often employing strong cryptographic algorithms such as AES (Advanced Encryption Standard), transforms the data into an unreadable format. This ensures that even if the data is intercepted during transit across an untrusted network, its content remains confidential and inaccessible to unauthorized parties.

Why this answer

TLS-based VPNs, such as OpenVPN in TLS mode, provide confidentiality through encryption of the tunneled traffic using symmetric ciphers (e.g., AES) negotiated during the TLS handshake. They also provide integrity via message authentication codes (e.g., HMAC) applied to each record, ensuring data has not been altered in transit. These are fundamental security services of the TLS protocol itself.

Exam trap

The trap here is that candidates confuse TLS VPNs with IPsec VPNs, incorrectly associating UDP port 500 or network layer operation with TLS, or assuming a digital certificate is mandatory for all TLS VPN deployments.

276
MCQhard

An organization uses a role-based access control (RBAC) model. After an audit, it was discovered that users have accumulated excessive permissions due to role proliferation. The security architect proposes migrating to an attribute-based access control (ABAC) model. Which challenge is MOST likely to be encountered during this migration?

A.Difficulty in assigning roles to users.
B.Reduced performance due to policy evaluation overhead.
C.Lack of support for ABAC in legacy applications.
D.Increased complexity in defining and managing attributes.
AnswerD

ABAC's power derives from its ability to make fine-grained access decisions based on a multitude of attributes related to the user, resource, action, and environment. This necessitates a robust and consistent attribute taxonomy, requiring significant upfront effort to define, standardize, collect, and maintain these attributes across various identity stores and systems. The sheer volume, dynamic nature, and precision required for attributes, coupled with their lifecycle management, represent the most substantial initial and ongoing complexity in an ABAC implementation.

Why this answer

Migrating from RBAC to ABAC requires defining a comprehensive set of attributes (subject, resource, environment) and the policies that combine them, which is inherently more complex than managing static role assignments. Role proliferation in RBAC often results from an attempt to mimic attribute-based decisions, but ABAC shifts the complexity from role engineering to attribute governance and policy logic, making attribute definition and management the primary challenge.

Exam trap

The trap here is that candidates confuse the operational challenge of performance (Option B) with the architectural challenge of attribute management, but CISSP emphasizes that the most significant hurdle in ABAC adoption is the complexity of defining and governing attributes, not the runtime evaluation speed.

How to eliminate wrong answers

Option A is wrong because RBAC already involves assigning roles to users, and migrating to ABAC eliminates the need for role assignment entirely, replacing it with attribute-based policy evaluation; difficulty in assigning roles is a pre-existing RBAC problem, not a new challenge of migration. Option B is wrong while ABAC can introduce performance overhead due to real-time policy evaluation, this is typically mitigated by policy caching and optimized engines, and it is not the most likely challenge compared to the fundamental complexity of attribute management. Option C is wrong because lack of support for ABAC in legacy applications is a potential integration issue, but it is not the most likely challenge; many legacy systems can be adapted via a policy enforcement point (PEP) or attribute proxy, whereas the core difficulty lies in defining and maintaining the attribute schema and policies themselves.

277
MCQmedium

A company is implementing TLS 1.3 to secure web communications. Which of the following features is unique to TLS 1.3 compared to earlier versions?

A.Mandatory forward secrecy using ephemeral Diffie-Hellman
B.Support for RSA key exchange
C.Only server-side authentication
D.Use of RC4 for encryption
AnswerA

TLS 1.3 requires ephemeral key exchanges (DHE or ECDHE) providing forward secrecy.

Why this answer

TLS 1.3 (RFC 8446) mandates forward secrecy by requiring ephemeral Diffie-Hellman (DHE or ECDHE) key exchange for all handshakes. This ensures that session keys are never derived from long-term static keys, so compromising the server's private key does not compromise past session keys. Earlier TLS versions allowed static RSA key exchange, which lacks forward secrecy.

Exam trap

The trap here is that candidates may confuse 'mandatory forward secrecy' with optional forward secrecy in earlier TLS versions, or mistakenly think RSA key exchange is still supported in TLS 1.3.

How to eliminate wrong answers

Option B is wrong because TLS 1.3 removed support for RSA key exchange entirely; RSA key transport does not provide forward secrecy and is vulnerable to decryption if the private key is compromised. Option C is wrong because TLS 1.3 supports mutual authentication (client and server certificates) via CertificateRequest and CertificateVerify messages, not only server-side authentication. Option D is wrong because RC4 is a deprecated stream cipher that was removed from TLS 1.2 and is not supported in TLS 1.3; TLS 1.3 uses AEAD ciphers like AES-GCM and ChaCha20-Poly1305.

278
MCQhard

A company is designing an access control system for a highly sensitive database. They want to ensure that only authorized users can access data, and that access is automatically revoked when the user's context changes (e.g., job role change). Which model BEST meets these requirements?

A.Attribute-based access control (ABAC) with dynamic policy evaluation.
B.Discretionary access control (DAC) with access control lists.
C.Role-based access control (RBAC) with periodic reviews.
D.Mandatory access control (MAC) with security labels.
AnswerA

Attribute-based access control (ABAC) is the most suitable model for highly dynamic environments because it evaluates access requests against policies that consider multiple attributes of the subject (user), object (resource), action, and environment in real-time. This dynamic policy evaluation allows access decisions to adapt instantly to changing conditions, such as a user's current location, time of day, or the sensitivity of the data being accessed, providing fine-grained and context-aware authorization.

Why this answer

ABAC with dynamic policy evaluation is the best fit because it uses attributes (user, resource, environment) to make real-time access decisions. This allows access to be automatically revoked when context changes, such as a job role update, without manual intervention or periodic reviews.

Exam trap

The trap here is that candidates often choose RBAC (Option C) because it is role-based and seems to handle role changes, but they miss that RBAC typically requires manual or periodic updates to revoke access, whereas ABAC provides automatic, real-time revocation based on dynamic attribute changes.

How to eliminate wrong answers

Option B (DAC) is wrong because it relies on resource owners to grant permissions via ACLs, which lacks automatic revocation based on context changes and introduces security risks from user-controlled access. Option C (RBAC) is wrong because while it uses roles, it typically requires periodic reviews or manual updates to revoke access when a role changes, not automatic dynamic revocation. Option D (MAC) is wrong because it enforces access based on fixed security labels (e.g., classification levels) and does not adapt to dynamic context changes like job role updates; it is designed for static, hierarchical security policies.

279
Multi-Selectmedium

Which TWO of the following are essential elements of a secure software development lifecycle (SSDLC)? (Select exactly 2.)

Select 2 answers
A.Security testing during the verification phase
B.Threat modeling during the design phase
C.Code obfuscation after compilation
D.Penetration testing after deployment
E.User acceptance testing before release
AnswersA, B

Security testing during the verification phase is an essential element because it systematically evaluates the software's adherence to defined security requirements and identifies vulnerabilities before deployment. This phase encompasses various testing methodologies, such as static application security testing (SAST), dynamic application security testing (DAST), and vulnerability scanning, ensuring that implemented security controls function as intended. It validates that the application can withstand anticipated attacks and protects sensitive data effectively. This proactive validation is critical for minimizing post-release security incidents.

Why this answer

Options A and B are correct because threat modeling during design and security testing during verification are standard phases in SSDLC. Option C is wrong because code obfuscation after compilation is a post-development technique, not a lifecycle element. Option D is wrong because penetration testing after deployment is part of security testing, but not a separate phase; it is typically performed during the testing phase.

Option E is wrong because user acceptance testing is functional, not security-focused.

280
MCQhard

Under HIPAA, what is the primary purpose of a Business Associate Agreement (BAA)?

A.To transfer ownership of PHI to the business associate
B.To authorize the use of PHI for marketing purposes
C.To require the business associate to comply with HIPAA Privacy and Security Rules
D.To allow the business associate to disclose PHI to any third party
AnswerC

The primary purpose of a Business Associate Agreement (BAA) is to contractually obligate the business associate to comply with the applicable provisions of the HIPAA Privacy and Security Rules. This legally binding agreement ensures that the business associate implements appropriate administrative, physical, and technical safeguards to protect Protected Health Information (PHI), reports breaches, and limits PHI use and disclosure to only what is necessary for the services provided, thereby extending the chain of trust.

Why this answer

A BAA ensures that business associates handling PHI will appropriately safeguard the information.

281
Multi-Selecthard

An organization is reviewing its media sanitization procedures. Which TWO methods are considered acceptable for sanitizing solid-state drives (SSDs) according to NIST SP 800-88 guidelines?

Select 2 answers
A.Degaussing
B.Cryptographic erase
C.Physical destruction (shredding or pulverizing)
D.Overwriting with a random pattern
E.Data wiping software
AnswersB, C

Cryptographic erasure (CE) sanitizes media by permanently deleting or overwriting the decryption keys associated with self-encrypting drives (SEDs). Without the key, the ciphertext remaining on the storage chips becomes mathematically infeasible to decrypt. This process is highly efficient and completed in seconds, making it ideal for both solid-state and magnetic media.

Why this answer

For SSDs, cryptographic erase and physical destruction are recommended. Overwriting is unreliable due to wear-leveling, and degaussing does not work on SSDs.

282
MCQmedium

An organization is implementing a change management process. Which group is responsible for reviewing and approving major changes?

A.Project management office
B.Incident response team
C.Change Advisory Board (CAB)
D.Security operations center
AnswerC

The Change Advisory Board (CAB) is a crucial component of a robust change management process, specifically tasked with reviewing, assessing, prioritizing, and authorizing proposed changes to an organization's IT services and infrastructure. Comprising diverse stakeholders, the CAB ensures that all potential impacts, risks, and resource requirements are thoroughly evaluated, including security implications, before a change is approved for implementation. This structured review minimizes adverse effects and maintains system stability.

Why this answer

The Change Advisory Board (CAB) is the formal group within ITIL-based change management responsible for reviewing, assessing, and approving major or high-risk changes. Major changes typically require a CAB meeting to evaluate impact, resource requirements, and rollback plans before authorization. This ensures changes do not introduce security vulnerabilities or disrupt critical operations.

Exam trap

The CISSP exam often tests the distinction between operational roles (SOC, Incident Response) and governance/approval bodies (CAB), leading candidates to confuse real-time monitoring functions with change authorization responsibilities.

How to eliminate wrong answers

Option A is wrong because the Project Management Office (PMO) oversees project portfolios and ensures alignment with business goals, but it does not have the authority or technical mandate to approve operational changes to production systems. Option B is wrong because the Incident Response Team handles active security incidents and post-incident remediation, not the proactive review and approval of planned changes. Option D is wrong because the Security Operations Center (SOC) monitors real-time security events and alerts, but it is not chartered to approve changes; its role is to detect and respond to anomalies that may result from changes, not to authorize them.

283
Multi-Selecteasy

A company is implementing a Data Loss Prevention (DLP) program. Which THREE of the following are common types of DLP controls?

Select 3 answers
A.Application DLP
B.Network DLP
C.Cloud DLP
D.Endpoint DLP
E.Physical DLP
AnswersB, C, D

Network DLP systems are strategically positioned at key network egress points, such as internet gateways or between network segments, to inspect all data traversing the network perimeter. This deployment type actively monitors data "in motion" by analyzing network traffic, including email, web protocols, and file transfers, for sensitive content that violates predefined organizational policies. Its primary function is to prevent unauthorized data exfiltration before it leaves the controlled network environment.

Why this answer

Common DLP types are network, endpoint, and cloud DLP.

284
MCQhard

A financial institution must ensure that transactions are well-formed and enforce separation of duties to prevent fraud. Which security model best addresses these requirements?

A.Biba
B.Clark-Wilson
C.Brewer-Nash
D.Bell-LaPadula
AnswerB

The Clark-Wilson integrity model is specifically designed for commercial environments requiring strong data integrity, well-formed transactions, and accountability. It enforces integrity through constrained data items (CDIs) that can only be modified by certified transformation procedures (TPs), which are executed by authorized users under strict separation of duties. This model directly addresses the need for controlled, validated operations and accountability in financial systems, ensuring transactions are processed correctly and preventing fraud.

Why this answer

Clark-Wilson model defines well-formed transactions and separation of duties to maintain commercial integrity.

285
MCQeasy

Which access control model allows the owner of a resource to grant or deny access to other users?

A.Mandatory Access Control (MAC)
B.Discretionary Access Control (DAC)
C.Attribute-Based Access Control (ABAC)
D.Role-Based Access Control (RBAC)
AnswerB

Discretionary Access Control (DAC) is the correct model because it empowers the resource owner to define and modify access permissions for the resources they own. Under DAC, the owner can grant or revoke specific access rights (e.g., read, write, execute) to other users or groups, typically through mechanisms like Access Control Lists (ACLs) or permission bits. This model provides flexibility by allowing individual users to manage access to their own data and files, making it prevalent in many common operating systems.

Why this answer

Discretionary Access Control (DAC) enables resource owners to control access.

286
MCQhard

A security architect is reviewing the access control model for a microservices architecture. Which approach minimizes the risk of privilege escalation from a compromised service?

A.Use attribute-based access control (ABAC) with service-specific policies.
B.Implement role-based access control (RBAC) with global roles.
C.Use API keys for all service-to-service communication.
D.Deploy a single sign-on solution.
AnswerA

Attribute-Based Access Control (ABAC) is the most suitable model for complex, dynamic authorization requirements in modern service architectures. It evaluates access requests based on a combination of attributes associated with the subject (e.g., calling service identity), object (e.g., target resource), action (e.g., read, write), and environment (e.g., time of day, network location). By implementing service-specific policies, ABAC enables highly granular, context-aware authorization decisions, effectively limiting privilege escalation by ensuring services only access what is precisely needed under specific conditions.

Why this answer

ABAC with service-specific policies minimizes privilege escalation because it enforces fine-grained, context-aware permissions (e.g., user attributes, resource type, action) per microservice. If a service is compromised, its policies are scoped only to that service’s required operations, preventing lateral movement or elevation to other services. This aligns with the principle of least privilege and defense in depth in a distributed architecture.

Exam trap

The trap here is that candidates confuse authentication (API keys, SSO) with authorization (ABAC, RBAC), assuming that verifying identity alone prevents privilege escalation, when in fact fine-grained authorization policies are required to limit what a compromised service can do.

How to eliminate wrong answers

Option B is wrong because RBAC with global roles assigns broad, static permissions across all services, so a compromised service inherits excessive privileges that can be exploited for escalation. Option C is wrong because API keys authenticate services but do not enforce authorization policies; a compromised key grants full access to the target service without granular control. Option D is wrong because SSO authenticates users across services but does not restrict what a compromised service can do; it centralizes identity but not authorization, leaving privilege escalation risks unaddressed.

287
MCQmedium

A security architect is implementing a system that must prevent conflicts of interest for a consulting firm serving competing clients. Which security model is best suited for this requirement?

A.Take-Grant
B.Brewer-Nash
C.Clark-Wilson
D.Graham-Denning
AnswerB

The Brewer-Nash model, also known as the Chinese Wall model, is specifically designed to prevent conflicts of interest by dynamically restricting access based on prior access history. It ensures that a subject who has accessed information from one company within a "conflict of interest class" cannot subsequently access information from a competing company within the same class. This dynamic access control mechanism effectively enforces ethical walls, making it the ideal choice for scenarios requiring the prevention of information leakage between competing entities.

Why this answer

The Brewer-Nash (Chinese Wall) model prevents consultants from accessing data of competing clients once they have accessed one client's data.

288
MCQhard

A financial services company has a hybrid cloud environment with on-premises servers and a public cloud provider. The security team recently discovered that an attacker exfiltrated sensitive customer data from a cloud storage bucket. The investigation reveals that the bucket was configured with a bucket policy that allowed anonymous read access. The security architect must redesign the architecture to prevent such incidents. The company uses AWS for cloud services. The architect proposes the following: (1) Enable AWS CloudTrail and Amazon GuardDuty for monitoring. (2) Implement AWS Identity and Access Management (IAM) roles for applications instead of long-term access keys. (3) Use AWS Key Management Service (KMS) to encrypt data at rest. (4) Configure a VPC with a NAT gateway and private subnets for all compute resources. (5) Implement S3 bucket policies that deny all access unless explicitly allowed by a specific IAM role. During a review, the chief information security officer (CISO) points out that one of these measures does not directly address the root cause of the incident. Which measure is least effective in preventing unauthorized access to S3 buckets?

A.Use AWS KMS to encrypt data at rest
B.Configure a VPC with private subnets and a NAT gateway
C.Enable AWS CloudTrail and Amazon GuardDuty for monitoring
D.Implement IAM roles for applications instead of long-term access keys
AnswerC

Enabling AWS CloudTrail and Amazon GuardDuty is a critical detective control for identifying security misconfigurations and unauthorized activity. CloudTrail logs all API calls, including changes to S3 bucket policies that could expose data, providing an audit trail. GuardDuty continuously monitors for malicious activity and unusual S3 access patterns, such as anonymous access or data exfiltration attempts, alerting security teams to potential breaches for rapid response.

Why this answer

(enabling AWS CloudTrail and Amazon GuardDuty) is a detective control, not a preventive one. The root cause of the incident was a misconfigured bucket policy that allowed anonymous read access. Monitoring tools can detect unauthorized access after it occurs but cannot prevent it.

The other options directly address the root cause by enforcing least privilege, encrypting data, or restricting network access.

Exam trap

The trap here is confusing detective controls (monitoring) with preventive controls (access policies, encryption, network segmentation), leading candidates to think that enabling logging and threat detection directly prevents the root cause of a misconfigured bucket policy.

How to eliminate wrong answers

Option A is wrong because encrypting data at rest with AWS KMS does not prevent unauthorized access; it only protects data confidentiality if access is gained, but the root cause is a permissive bucket policy that allows anonymous read access. Option B is wrong because configuring a VPC with private subnets and a NAT gateway does not affect S3 bucket policies; S3 is a global service and bucket policies are evaluated independently of network architecture. Option D is wrong because implementing IAM roles instead of long-term access keys addresses credential management but does not prevent anonymous access granted by a bucket policy; the incident occurred because the bucket policy allowed anonymous read, not because of compromised keys.

289
MCQhard

An organization is adopting DevOps. Which of the following is a primary security concern when integrating security into CI/CD pipelines?

A.Credential management for automated tools.
B.Increased number of releases.
C.Automated testing slows down deployment.
D.Resistance from development teams.
AnswerA

In a DevOps environment, automated tools frequently require access to various systems, repositories, and environments. If these credentials are hardcoded, stored insecurely in source control, or managed without robust secrets management solutions, they become a critical attack vector. A compromise of such credentials could grant an attacker extensive unauthorized access across the entire software delivery pipeline, from development to production, leading to data breaches or system manipulation. This makes secure credential management a paramount security challenge.

Why this answer

Credential management for automated tools is a primary security concern because CI/CD pipelines require automated access to repositories, artifact registries, and deployment environments. Hardcoding secrets or using weak storage (e.g., plaintext in scripts) exposes credentials to compromise via pipeline logs, version control history, or insider threats. Proper management using vaults (e.g., HashiCorp Vault) or secret injection (e.g., Kubernetes Secrets) is critical to prevent unauthorized access.

Exam trap

The trap here is that candidates may focus on operational or cultural issues (like resistance or speed) instead of the fundamental technical risk of credential exposure in automated, unattended processes.

How to eliminate wrong answers

Option B is wrong because an increased number of releases is a DevOps benefit, not a security concern; it can actually improve security by enabling faster patching. Option C is wrong because automated testing, while potentially slower, is a security enabler (e.g., SAST/DAST) that catches vulnerabilities early, not a primary concern. Option D is wrong because resistance from development teams is a cultural or process issue, not a technical security concern specific to CI/CD pipeline integration.

290
MCQeasy

A security analyst is asked to identify vulnerabilities in a web application without attempting to exploit them. Which type of assessment is being performed?

A.Security review
B.Vulnerability assessment
C.Security audit
D.Penetration test
AnswerB

A vulnerability assessment systematically scans systems, applications, and networks for known security weaknesses, configuration errors, and missing patches. It utilizes automated tools and manual analysis to identify potential flaws without attempting to exploit them. The primary goal is to provide a prioritized list of vulnerabilities that could be exploited, enabling organizations to proactively address risks before they are leveraged by attackers.

Why this answer

A vulnerability assessment is a systematic review of security weaknesses in a system or application, but it does not involve actively exploiting those weaknesses. The question specifies that the analyst is asked to identify vulnerabilities without attempting to exploit them, which directly matches the definition of a vulnerability assessment. This type of assessment typically uses automated scanners (e.g., Nessus, OpenVAS) and manual checks to enumerate potential vulnerabilities, such as missing patches or misconfigurations, without moving to the exploitation phase.

Exam trap

The trap here is that candidates often confuse vulnerability assessment with penetration testing, assuming that any active testing must include exploitation, but the CISSP exam emphasizes the distinction that vulnerability assessment stops at identification, while penetration testing includes exploitation.

How to eliminate wrong answers

Option A is wrong because a security review is a broad, often high-level evaluation of security policies, procedures, and controls, not a focused technical scan for specific vulnerabilities in a web application. Option C is wrong because a security audit is a formal, compliance-driven examination against a defined standard (e.g., ISO 27001, PCI DSS), which may include vulnerability identification but is not limited to it and often involves verifying controls rather than just scanning for weaknesses. Option D is wrong because a penetration test actively exploits vulnerabilities to determine the extent of compromise, which contradicts the question's condition of not attempting to exploit them.

291
Multi-Selecthard

Which THREE of the following are valid considerations when implementing data loss prevention (DLP) controls to protect sensitive data? (Select three.)

Select 3 answers
A.Integration with all third-party applications
B.User training to reduce false positives and increase acceptance
C.Monitoring of data in use, in motion, and at rest
D.Data classification schemes to identify sensitive data
E.Blocking all data transfers to external devices
AnswersB, C, D

Effective user training is a critical consideration for successful Data Loss Prevention (DLP) implementation. Educating users on what constitutes sensitive data, acceptable data handling practices, and the purpose of DLP policies helps significantly reduce the occurrence of false positives. This understanding also fosters user acceptance and compliance, minimizing frustration and workarounds when legitimate business activities are temporarily flagged, ultimately improving the overall effectiveness and adoption of the DLP solution.

Why this answer

User training is a critical component of a successful DLP implementation. Without proper training, users may inadvertently trigger false positives by mishandling data or may attempt to bypass controls they perceive as overly restrictive. Training helps users understand classification labels and proper data handling procedures, reducing the operational burden on security teams and increasing overall acceptance of DLP policies.

Exam trap

The trap here is that candidates often assume DLP must be all-encompassing (e.g., blocking all transfers or integrating with every app), but the CISSP emphasizes risk-based, balanced controls that include user awareness and layered monitoring.

292
MCQeasy

A small business wants to implement a security policy that balances protection with usability. Which of the following is the MOST important factor when developing the policy?

A.Adopting a template from a similar organization to save time.
B.Aligning the policy with business objectives and risk appetite.
C.Ensuring the policy is enforceable with technical controls.
D.Basing the policy solely on regulatory compliance requirements.
AnswerB

This is the most crucial initial step because a security policy must fundamentally support the organization's mission and strategic goals. By aligning with business objectives, the policy ensures security measures facilitate, rather than hinder, operations. Incorporating the organization's risk appetite ensures that security investments and controls are proportionate to the acceptable level of residual risk, optimizing resource allocation and providing relevant protection.

Why this answer

A security policy must be aligned with the organization's business objectives and risk appetite to ensure it supports operations without imposing unnecessary restrictions. For a small business, this balance is critical—overly strict controls can hinder productivity, while weak controls increase risk. The policy should reflect the specific threats and tolerances of the business, not generic templates or compliance-only checklists.

Exam trap

The trap here is that candidates often confuse 'enforceability' (Option C) with policy effectiveness, but the CISSP emphasizes that policy must first be business-aligned; technical enforcement is a later step in the governance hierarchy.

How to eliminate wrong answers

Option A is wrong because adopting a template from a similar organization ignores the unique risk profile, business processes, and regulatory environment of the small business, leading to misaligned controls and potential gaps. Option C is wrong because enforceability with technical controls is a secondary consideration—the policy must first define what is acceptable; technical controls are implementation details that can be adjusted later. Option D is wrong because basing the policy solely on regulatory compliance requirements creates a minimum-security baseline that may not address the business's actual risk exposure or operational needs, leaving it vulnerable to non-compliance-related threats.

293
Multi-Selectmedium

An organization is designing a security operations center (SOC) with three tiers. Which TWO of the following are typical responsibilities of Tier 1 analysts? (Select TWO)

Select 2 answers
A.Performing threat hunting
B.Monitoring SIEM alerts and performing initial triage
C.Escalating incidents to Tier 2 when necessary
D.Conducting in-depth forensic analysis
E.Developing new detection rules for the SIEM
AnswersB, C

Tier 1 SOC analysts are primarily responsible for the continuous monitoring of security information and event management (SIEM) systems. Their core duty involves reviewing incoming alerts, correlating events, and performing an initial assessment to determine if an alert represents a legitimate security incident. This initial triage ensures that potential threats are identified promptly and categorized for appropriate next steps.

Why this answer

Tier 1 analysts monitor alerts, perform initial triage, and escalate as needed.

294
MCQmedium

A multinational corporation is expanding its operations into a new country with strict data protection laws. The company needs to ensure compliance while maintaining operational efficiency. Which of the following is the BEST approach to manage this risk?

A.Accept the risk of non-compliance as a cost of doing business and set aside a contingency fund for fines.
B.Assign legal counsel to review local laws and implement a one-time compliance checklist.
C.Create a uniform global privacy policy that satisfies all jurisdictions with minimal adjustments.
D.Adopt a privacy-by-design framework and conduct a Data Protection Impact Assessment (DPIA) before launching operations.
AnswerD

Adopting a privacy-by-design framework ensures that privacy and data protection are proactively embedded into the design and architecture of systems and business practices from the outset, rather than being an afterthought. Conducting a Data Protection Impact Assessment (DPIA) before launching operations is crucial for identifying, assessing, and mitigating privacy risks associated with new data processing activities. This proactive approach is essential for achieving and demonstrating compliance with stringent global privacy regulations.

Why this answer

A privacy-by-design framework ensures data protection is embedded into systems and processes from the outset, while a Data Protection Impact Assessment (DPIA) systematically identifies and mitigates privacy risks specific to the new jurisdiction. This proactive, risk-based approach aligns with regulatory requirements like the GDPR and demonstrates due diligence, reducing the likelihood of non-compliance and operational disruption.

Exam trap

The trap here is that candidates often choose Option B (one-time compliance checklist) because it seems practical and legally focused, but they overlook that privacy compliance is an ongoing process requiring continuous risk assessment and adaptation, not a single review event.

How to eliminate wrong answers

Option A is wrong because accepting non-compliance risk as a cost of doing business ignores legal obligations and can lead to severe penalties, reputational damage, and operational bans, which is not a viable risk management strategy under strict data protection laws. Option B is wrong because a one-time compliance checklist is static and fails to address ongoing regulatory changes, data lifecycle management, and the need for continuous monitoring and adaptation required by modern privacy frameworks. Option C is wrong because a uniform global privacy policy cannot satisfy all jurisdictions due to conflicting requirements (e.g., GDPR’s strict consent vs. other laws’ legitimate interest provisions), and minimal adjustments often result in gaps that violate local laws.

295
MCQeasy

Which physical security concept uses natural surveillance, territorial reinforcement, and access control to deter crime in built environments?

A.TEMPEST
B.Faraday cage
C.Defense in depth
D.CPTED
AnswerD

Crime Prevention Through Environmental Design (CPTED) is a multidisciplinary approach that strategically uses the physical environment to reduce crime and the fear of crime. It achieves this by manipulating the built environment to enhance natural surveillance, control access, define territoriality, and maintain spaces, thereby increasing the perceived risk for offenders and reducing opportunities for crime. Natural surveillance, a core CPTED principle, involves designing spaces where legitimate users can naturally observe their surroundings, making criminal acts more difficult or noticeable.

Why this answer

Crime Prevention Through Environmental Design (CPTED) uses design principles to reduce crime opportunities.

296
MCQeasy

A network administrator notices that users in the accounting department can access the internet but are unable to access the internal payroll server (10.10.10.50). The firewall rule allows traffic from the accounting subnet (10.10.20.0/24) to the payroll server. What is the most likely issue?

A.DNS is not resolving the payroll server's IP address.
B.The payroll server's default gateway does not have a route back to 10.10.20.0/24.
C.The firewall rule is applied to the outbound interface only.
D.The accounting subnet is blocked by an implicit deny rule.
AnswerB

For successful two-way communication between devices residing on different subnets, both the source and destination networks must possess valid routes to each other. If the payroll server's default gateway lacks a specific route back to the accounting subnet (10.10.20.0/24), the server's response packets will be dropped, misrouted, or sent to an incorrect destination. This absence of a proper return path prevents the accounting users from receiving data, leading to a perceived connectivity failure.

Why this answer

The most likely issue is that the payroll server's default gateway does not have a route back to the accounting subnet (10.10.20.0/24). Even if the firewall permits outbound traffic from the accounting subnet to the payroll server, the return traffic from the server must be routed back through the firewall or a router that knows how to reach 10.10.20.0/24. Without a return route, the server's response packets are dropped, causing a one-way communication failure.

Exam trap

The trap here is that candidates often focus on firewall rule direction (inbound vs. outbound) or DNS, overlooking the fundamental requirement for symmetric routing and the fact that the server's default gateway must know how to reach the source subnet.

How to eliminate wrong answers

Option A is wrong because DNS resolution is irrelevant when the user is accessing the payroll server by its IP address (10.10.10.50), not a hostname. Option C is wrong because firewall rules are typically applied to inbound and outbound interfaces; if the rule is applied only to the outbound interface, it would still allow traffic leaving the accounting subnet, but the real issue is the lack of a return route, not the firewall rule placement. Option D is wrong because an implicit deny rule would block all traffic not explicitly permitted, but the question states the firewall rule allows traffic from the accounting subnet to the payroll server, so the implicit deny is not the cause of the specific failure.

297
MCQmedium

A government agency requires a new secure document management system that enforces mandatory access control with the properties that users cannot read documents at a higher classification and cannot write documents to a lower classification (to prevent data leaking). The system must also support different categories (compartments) within the same classification level, and a user with access to one compartment should not be able to access another compartment unless explicitly allowed. The architect is considering the Bell-LaPadula model. However, the Bell-LaPadula model's *-property (no write-down) addresses the write issue, but there is also a need to handle compartment isolation. Which additional model or mechanism should be incorporated to ensure compartment isolation?

A.Apply the Brewer-Nash (Chinese Wall) model which enforces conflict of interest by preventing access to multiple compartments that conflict.
B.Implement Biba's integrity model which prevents write-up, thus complementing Bell-LaPadula.
C.Use a lattice-based access control (LBAC) that extends Bell-LaPadula by defining a security lattice that includes compartments and categories, ensuring that a subject's clearance must dominate the object's classification, including compartments.
D.Use role-based access control (RBAC) to define compartments.
AnswerC

Lattice-based access control (LBAC) is a powerful mandatory access control (MAC) model that extends Bell-LaPadula by incorporating multiple, non-hierarchical compartments (e.g., 'Nuclear,' 'Space,' 'Cyber') alongside hierarchical classification levels. It defines a security lattice where a subject's clearance must 'dominate' an object's classification, meaning the subject must possess all required classification levels and *all* specified compartments to gain access, precisely addressing the need for fine-grained compartment isolation.

Why this answer

Lattice-based access control (LBAC) extends the Bell-LaPadula model by defining a security lattice that includes both hierarchical classifications (e.g., Top Secret, Secret) and non-hierarchical categories (compartments). In this lattice, a subject's clearance must dominate an object's classification across both dimensions, ensuring that a user with access to one compartment cannot access another unless their clearance includes that specific category. This directly enforces the required compartment isolation while maintaining the *-property (no write-down) for data leakage prevention.

Exam trap

The trap here is that candidates may confuse the Brewer-Nash model's dynamic separation of duties with the static, lattice-based compartment isolation required by MAC, or incorrectly assume that Biba's integrity model can somehow enforce confidentiality-based compartment boundaries.

How to eliminate wrong answers

Option A is wrong because the Brewer-Nash (Chinese Wall) model is designed to prevent conflict of interest in commercial environments by dynamically restricting access to competing datasets, not to enforce static compartment isolation within a single classification level as required by the government agency. Option B is wrong because Biba's integrity model focuses on preventing unauthorized modification (no write-up, no read-down) to protect data integrity, which does not address compartment isolation or complement Bell-LaPadula's confidentiality goals in this context. Option D is wrong because role-based access control (RBAC) assigns permissions based on job functions, not on a formal lattice of classifications and categories, and it lacks the mandatory, system-enforced dominance checks needed for compartment isolation in a mandatory access control (MAC) system.

298
MCQhard

A company is evaluating a third-party software library for use in their application. Which document provides a detailed inventory of the library's components and dependencies to help assess supply chain risk?

A.Service Level Agreement (SLA)
B.Data processing agreement
C.Vulnerability disclosure report
D.Software Bill of Materials (SBOM)
AnswerD

A Software Bill of Materials (SBOM) is a formal, machine-readable inventory of all software components, including open-source and commercial elements, and their dependencies used in a product. It provides critical transparency into the software supply chain, enabling organizations to proactively identify and track known vulnerabilities, licensing obligations, and potential risks associated with third-party libraries, which is essential for comprehensive risk assessment.

Why this answer

A Software Bill of Materials (SBOM) lists all components and dependencies, aiding vulnerability management and supply chain security.

299
MCQhard

A company is decommissioning a data center and needs to dispose of hard drives that contained highly confidential financial data. Which of the following methods provides the HIGHEST assurance that data cannot be recovered?

A.Overwriting the drives with multiple passes of random data
B.Shredding the drives into small pieces
C.Degaussing the drives
D.Overwriting the drives with a single pass of zeros
AnswerB

Shredding is a physical destruction method that renders the storage media completely unusable and makes data recovery physically impossible. By breaking the platters or flash memory chips into tiny fragments, the integrity of the data storage surfaces is irrevocably destroyed. This method provides the highest level of assurance for data sanitization, making it the most appropriate choice for highly confidential information.

Why this answer

Shredding the drives into small pieces physically destroys the platters, making data recovery impossible regardless of the storage technology (e.g., HDD vs. SSD). This method provides the highest assurance because it eliminates any possibility of reading residual magnetic or solid-state data, even with advanced forensic tools like electron microscopy.

Exam trap

The trap here is that candidates often choose degaussing or multi-pass overwriting because they are familiar with these methods, but they fail to recognize that physical destruction is the only method that guarantees data irretrievability across all drive types, especially SSDs.

How to eliminate wrong answers

Option A is wrong because overwriting with multiple passes (e.g., Gutmann method) is effective for magnetic media but provides no assurance for SSDs or modern HDDs with high-density platters, and it is time-consuming; more importantly, it does not physically destroy the drive, so residual data could theoretically be recovered with specialized equipment. Option C is wrong because degaussing uses a strong magnetic field to erase data on HDDs, but it is ineffective on SSDs (which store data in NAND flash cells) and may leave the drive non-functional without guaranteeing complete erasure of all sectors. Option D is wrong because a single pass of zeros is sufficient for many modern HDDs (per NIST SP 800-88), but it does not address SSDs or provide the same level of assurance as physical destruction, and it leaves the drive intact for potential recovery attempts.

300
MCQmedium

An organization needs to ensure that its employees understand their responsibilities regarding information security. Which of the following is the MOST effective way to achieve this?

A.Distribute a security policy document and require a signature.
B.Conduct a one-time annual security briefing.
C.Display security posters in common areas.
D.Implement a security awareness program with regular training and assessments.
AnswerD

An effective security awareness program incorporates regular, ongoing training sessions to reinforce critical concepts, adapt to evolving threats, and address new vulnerabilities. Crucially, it includes assessments (e.g., quizzes, simulated phishing exercises) to objectively measure employee comprehension and identify knowledge gaps. This continuous cycle of education, reinforcement, and evaluation ensures employees not only receive information but also understand, retain, and consistently apply security best practices, thereby measurably improving the organization's human firewall.

Why this answer

A security awareness program with regular training and assessments is the most effective way to ensure employees understand their responsibilities because it establishes a continuous learning cycle. Unlike one-time events, it reinforces secure behaviors through repetition, real-world scenarios, and measurable assessments, aligning with the NIST SP 800-50 framework for building a security-conscious culture.

Exam trap

The trap here is that candidates often mistake a one-time annual briefing (Option B) as sufficient due to its common use in compliance checklists, but the CISSP emphasizes continuous, behavior-changing programs over periodic, passive activities.

How to eliminate wrong answers

Option A is wrong because simply distributing a policy document and requiring a signature does not guarantee comprehension or retention; it relies on passive acknowledgment and lacks verification of understanding, which is a common failure point in compliance-driven approaches. Option B is wrong because a one-time annual briefing is insufficient to address evolving threats and employee turnover; it provides only a snapshot of knowledge without ongoing reinforcement, leading to decay of awareness over time. Option C is wrong because security posters in common areas are passive communication tools that lack interactivity and assessment; they may raise superficial awareness but fail to change behavior or ensure employees grasp their specific responsibilities.

Page 3

Page 4 of 10

Page 5

All pages