Courseiva

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

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

Page 2

Page 3 of 10

Page 4
151
MCQmedium

During a security review of a web application, testers discover that the application discloses detailed error messages to users, including stack traces. Which secure coding best practice is being violated?

A.Input validation
B.Error handling
C.Secure logging
D.Output encoding
AnswerB

Proper error handling is the direct solution to preventing sensitive information disclosure through error messages. It mandates that applications gracefully intercept all exceptions and internal failures, subsequently presenting only generic, non-informative messages to end-users. Crucially, detailed diagnostic information, such as stack traces or database errors, must be securely logged on the server-side for administrators to troubleshoot, ensuring that no sensitive system details are inadvertently exposed to potential attackers or unauthorized individuals.

Why this answer

Error handling best practices dictate that generic error messages should be shown to users, while detailed errors (e.g., stack traces) should be logged internally to avoid information disclosure.

152
MCQmedium

A security team is planning a social engineering test for their organization. Which of the following scenarios would BEST assess the effectiveness of security awareness training?

A.Sending a phishing email that mimics a common internal communication.
B.Calling employees and pretending to be IT support to obtain passwords.
C.Attempting to tailgate into a secure facility.
D.Searching through trash bins for sensitive documents.
AnswerA

Sending a phishing email that mimics a common internal communication directly tests the effectiveness of an organization's security awareness training regarding email-borne threats. This method assesses employees' ability to identify suspicious emails, recognize social engineering indicators, and follow established protocols for reporting potential phishing attempts. It provides measurable data on human vulnerability to the most prevalent form of digital social engineering.

Why this answer

Sending a phishing email that mimics a common internal communication directly tests whether employees can recognize and report a realistic social engineering attempt, which is the primary goal of security awareness training. This scenario evaluates the human firewall by simulating the most prevalent attack vector—email-based phishing—and measures the effectiveness of training in reducing click-through rates and increasing reporting behavior.

Exam trap

The trap here is that candidates may choose tailgating or vishing because they seem more dramatic or directly test human behavior, but the CISSP exam emphasizes that phishing emails are the most common and effective social engineering vector, and thus the best assessment of security awareness training in a typical enterprise environment.

How to eliminate wrong answers

Option B is wrong because calling employees and pretending to be IT support to obtain passwords tests vishing (voice phishing), which is a valid social engineering vector but less common than email phishing and not the best measure of general security awareness training effectiveness, as training often focuses more on email-based threats. Option C is wrong because tailgating tests physical security controls and employee vigilance at access points, which is a separate domain (physical security) and not the primary focus of most security awareness training programs. Option D is wrong because searching through trash bins for sensitive documents tests dumpster diving, which assesses physical disposal policies and shredding compliance, not the behavioral response to social engineering that awareness training aims to improve.

153
MCQmedium

A security architect is designing access controls for a healthcare application where permissions are based on the user's role, the sensitivity of the data, and the context of the access (e.g., time of day). Which access control model best fits this requirement?

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

Attribute-Based Access Control (ABAC) is a highly flexible and dynamic authorization model that grants or denies access requests by evaluating a comprehensive set of attributes associated with the user, the resource, the environment, and the requested action. This approach allows for fine-grained access decisions that can incorporate real-time contextual information, such as the user's location, device posture, time of access, and the specific data sensitivity. By leveraging a policy engine to process these diverse attributes against defined rules, ABAC effectively supports complex, adaptive access control requirements.

Why this answer

Attribute-Based Access Control (ABAC) is the correct model because it evaluates access decisions based on multiple attributes: the user's role, the data sensitivity (object attributes), and environmental context such as time of day. Unlike simpler models, ABAC can combine subject, resource, and environment attributes using policy rules (e.g., XACML or ALFA) to enforce fine-grained, context-aware permissions, which is essential for healthcare applications with dynamic compliance requirements like HIPAA.

Exam trap

The trap here is that candidates see 'role' in the requirement and immediately choose RBAC, overlooking that the question explicitly includes data sensitivity and context (time of day), which are attributes that only ABAC can combine into a single policy decision.

How to eliminate wrong answers

Option A is wrong because Role-Based Access Control (RBAC) only considers the user's role and does not natively incorporate data sensitivity or environmental context like time of day; it would require additional custom logic or a hybrid model. Option B is wrong because Mandatory Access Control (MAC) enforces access based on fixed security labels (e.g., classification levels) and system-wide policies, not on dynamic attributes like time or user role; it is too rigid for context-aware healthcare scenarios. Option D is wrong because Discretionary Access Control (DAC) allows resource owners to set permissions at their discretion, which cannot enforce organization-wide policies based on data sensitivity or contextual factors like time of day, leading to inconsistent and insecure access.

154
MCQeasy

Which term describes the process of modifying data so that it cannot be attributed to a specific individual without additional information that is kept separately?

A.Anonymisation
B.Differential privacy
C.Pseudonymisation
D.Encryption
AnswerC

Pseudonymisation is a data management and de-identification technique where directly identifying fields within a data record are replaced with artificial identifiers, or pseudonyms. While the direct identifiers are removed, a separate 'key' or mapping table is maintained, allowing for the re-identification of the original data subject if necessary, typically under strict controls and for specific purposes. This process reduces the linkability of a dataset to an individual without completely destroying the possibility of re-identification, making it a reversible de-identification method.

Why this answer

Pseudonymisation replaces identifying information with pseudonyms, allowing re-identification with additional data kept separately.

155
MCQmedium

An organization wants to enable single sign-on (SSO) across multiple web applications using an XML-based protocol that supports browser redirect flows. Which technology is most appropriate?

A.Kerberos
B.OAuth 2.0
C.OpenID Connect (OIDC)
D.SAML 2.0
AnswerD

SAML 2.0 (Security Assertion Markup Language) is an XML-based standard for exchanging authentication and authorization data between an identity provider and a service provider. It is specifically designed to facilitate browser-based single sign-on (SSO) for web applications across different security domains, allowing users to authenticate once and gain access to multiple services without re-entering credentials. Its robust support for federated identity management makes it a cornerstone for enterprise SSO solutions.

Why this answer

SAML 2.0 is XML-based and uses browser redirects for SSO between IdP and SPs.

156
MCQeasy

An organization wants to implement single sign-on (SSO) for multiple cloud applications. Which of the following is the most secure and scalable approach?

A.Implement SAML-based federation
B.Use OAuth for authentication
C.Use the same password for all applications
D.Implement LDAP directory
AnswerA

SAML (Security Assertion Markup Language) is an XML-based open standard specifically designed for exchanging authentication and authorization data between an identity provider (IdP) and a service provider (SP). It enables Single Sign-On (SSO) by allowing a user to authenticate once with an IdP and then access multiple SPs without re-authenticating, using cryptographically signed assertions. This federation model ensures secure, scalable, and interoperable identity management across disparate systems, making it the industry standard for enterprise SSO.

Why this answer

SAML-based federation (Option A) is the most secure and scalable approach for SSO across multiple cloud applications because it is specifically designed for identity federation and cross-domain authentication. It allows organizations to centralize authentication and enforce policies without sharing passwords. Option B (OAuth) is an authorization framework, not an authentication protocol, and is less secure for SSO when used alone.

Option C (same password) is insecure and not scalable. Option D (LDAP) is a directory service protocol that lacks native support for web SSO and does not scale well across cloud applications.

157
MCQmedium

An organization is implementing biometric authentication. Which factor should be considered to minimize the false rejection rate?

A.Lower the sensitivity threshold [correct]
B.Increase enrollment sample quality
C.Use liveness detection
D.Store templates securely
AnswerA

Lowering the sensitivity threshold in a biometric system makes the matching algorithm less strict, requiring a lower degree of similarity between the live biometric sample and the enrolled template for a successful match. This adjustment increases the likelihood that variations in a legitimate user's presentation (e.g., slight angle changes, minor injuries) will still be accepted. Consequently, it directly reduces the False Rejection Rate (FRR), meaning fewer authorized individuals are incorrectly denied access, though it typically comes at the cost of increasing the False Acceptance Rate (FAR).

Why this answer

The false rejection rate (FRR) is the likelihood that the system incorrectly rejects an authorized user. Lowering the sensitivity threshold makes the system less strict, reducing false rejections (FRR) but increasing false acceptance (FAR). Therefore, Option A is the correct factor to minimize FRR.

158
MCQeasy

Which authentication factor type is a smart card?

A.Somewhere you are
B.Type 2 (something you have)
C.Type 3 (something you are)
D.Type 1 (something you know)
AnswerB

A smart card is a quintessential example of a "something you have" authentication factor because it is a tangible, physical item that the user must possess and present for authentication. This factor relies on the physical control of an object, such as a cryptographic token, USB key, or in this case, a smart card. The card securely stores cryptographic keys or digital certificates, which are accessed only when the card is physically inserted into a compatible reader, thereby proving possession.

Why this answer

A smart card is a Type 2 authentication factor because it falls under the 'something you have' category. The card itself is a physical device that stores a digital certificate or cryptographic key, which the user must possess to authenticate. Unlike knowledge-based or biometric factors, possession of the smart card is the core authentication mechanism, often combined with a PIN (Type 1) for two-factor authentication.

Exam trap

The trap here is that candidates confuse 'something you have' (Type 2) with 'something you are' (Type 3) because smart cards are often used with biometric readers, but the card itself is a possession factor, not a biometric.

How to eliminate wrong answers

Option A is wrong because 'Somewhere you are' is not a standard authentication factor type in the CISSP framework; it is a location-based attribute, not a factor category. Option C is wrong because Type 3 (something you are) refers to biometric characteristics such as fingerprints or iris scans, not a physical token like a smart card. Option D is wrong because Type 1 (something you know) includes passwords, PINs, or passphrases, whereas a smart card is a tangible object, not knowledge.

159
MCQhard

A multinational corporation is designing a data retention schedule. Which factor is most critical when determining retention periods for personal data subject to the GDPR?

A.The length of the third-party data processing agreement
B.The purpose for which the data was collected
C.The cost of storage media
D.The duration of any pending legal holds
AnswerB

This is the fundamental driver for data retention, directly aligning with privacy principles such as "storage limitation" found in regulations like GDPR and CCPA. Data should only be retained for as long as it is necessary to fulfill the specific, explicit, and legitimate purposes for which it was originally collected, or for subsequent compatible purposes, unless a legal or regulatory obligation explicitly dictates a longer period. This principle minimizes data exposure and associated risks.

Why this answer

Under the GDPR, Article 5(1)(e) establishes the 'storage limitation' principle, which mandates that personal data must be kept no longer than necessary for the purposes for which it was collected. Therefore, the purpose of collection is the primary driver for determining the retention period, as it defines the lawful basis and necessity for processing. Without a defined purpose, any retention period would be arbitrary and non-compliant with the regulation.

Exam trap

ISC2 often tests the misconception that legal holds or contractual agreements override the primary GDPR requirement, but the trap here is that candidates confuse operational constraints (cost, contracts) with the regulatory mandate that purpose must dictate retention.

How to eliminate wrong answers

Option A is wrong because the length of a third-party data processing agreement is a contractual term that may align with retention needs, but it is not the most critical factor; GDPR requires the data controller to determine retention based on purpose, not the duration of a vendor contract. Option C is wrong because the cost of storage media is an operational or financial consideration, not a legal or compliance driver; GDPR explicitly prohibits retaining data solely because storage is cheap or convenient. Option D is wrong because while legal holds can extend retention periods to comply with litigation or investigation requirements, they are an exception to the standard retention schedule, not the primary factor for setting the initial retention period; the purpose of collection remains the foundational criterion.

160
MCQeasy

A large enterprise uses Active Directory for authentication. Several users report intermittent authentication failures when accessing internal web applications. The help desk confirms that the failures occur at random times and affect both new and existing users. The security team discovers that the system clocks on domain controllers are within acceptable limits, but some client workstations show time drift of up to 10 minutes. The Kerberos protocol is used for authentication. What is the most likely cause of the authentication failures, and what action should be taken?

A.Implement password complexity policies to reduce authentication errors
B.Enable NTLM fallback authentication for the web applications
C.Synchronize all client workstation clocks using a centralized NTP server
D.Configure Kerberos ticket lifetimes to 24 hours to reduce sensitivity to time skew
AnswerC

Kerberos relies heavily on precise time synchronization between the client, the authenticating server, and the Key Distribution Center (KDC) to prevent replay attacks and ensure ticket validity. By synchronizing all client workstation clocks with a centralized Network Time Protocol (NTP) server, the enterprise ensures that all systems operate within the acceptable time skew tolerance (typically 5 minutes) required by Kerberos. This direct approach eliminates the root cause of authentication failures related to clock differences, allowing Kerberos to function securely and efficiently.

Why this answer

Kerberos authentication relies on synchronized clocks between clients and domain controllers, with a default maximum time skew tolerance of 5 minutes (RFC 4120). A client clock drift of up to 10 minutes exceeds this tolerance, causing intermittent authentication failures because Kerberos ticket requests are rejected as invalid or replay attacks. Synchronizing all client workstations to a centralized NTP server resolves the time skew and restores Kerberos authentication reliability.

Exam trap

The trap here is that candidates may think increasing Kerberos ticket lifetimes or enabling NTLM fallback will solve the issue, but they overlook the strict time synchronization requirement that is fundamental to Kerberos protocol security.

How to eliminate wrong answers

Option A is wrong because password complexity policies do not address time synchronization issues; they reduce the risk of password guessing but have no effect on Kerberos time skew errors. Option B is wrong because enabling NTLM fallback would degrade security by using a weaker, challenge-response protocol that is vulnerable to pass-the-hash attacks, and it does not fix the root cause of clock drift. Option D is wrong because increasing Kerberos ticket lifetimes does not change the maximum allowable time skew (default 5 minutes); tickets still require synchronized clocks for initial authentication, and a 10-minute drift will still cause failures regardless of ticket lifetime.

161
MCQeasy

An organization has implemented a password policy requiring a minimum of 8 characters, including uppercase, lowercase, numbers, and special characters. Despite annual security awareness training, a recent audit revealed that 60% of employees are using passwords that can be cracked within hours. The organization is also experiencing a high number of account compromises due to credential stuffing attacks. The security team is considering various controls to reduce the risk. Which of the following would be the MOST effective in addressing the identified issues?

A.Increase the minimum password length to 15 characters
B.Conduct quarterly password cracking attempts and notify users with weak passwords
C.Implement multifactor authentication for all user accounts
D.Require password changes every 30 days
AnswerC

Implementing multifactor authentication (MFA) significantly enhances security by requiring users to provide two or more distinct verification factors (e.g., something they know, something they have, something they are). This creates a robust defense-in-depth mechanism, as even if an attacker compromises a user's password through credential stuffing or other means, they would still lack the second factor needed to gain unauthorized access, effectively mitigating the risk of password-only breaches.

Why this answer

Multifactor authentication (MFA) adds an additional layer of security that significantly reduces the risk of credential compromise, even if passwords are weak. Increasing password length may help but is still vulnerable to cracking if users choose predictable patterns. Password cracking tests are reactive and may not prevent attacks.

Frequent password changes often lead to weaker passwords.

162
MCQeasy

Which of the following is a key principle of privileged access management (PAM)?

A.Use shared accounts for simplicity
B.Monitor and audit privileged account usage
C.Grant all users administrative rights for efficiency
D.Disable logging for performance
AnswerB

Monitoring and auditing privileged account usage is a cornerstone of effective privileged access management (PAM). This continuous oversight enables the prompt detection of unauthorized activities, policy violations, or suspicious behavior that could indicate a compromise. Regular audits provide irrefutable evidence for accountability, support compliance requirements, and are critical for post-incident forensic analysis, thereby significantly reducing operational risk.

Why this answer

Privileged Access Management (PAM) is centered on the principle of least privilege and the need to control, monitor, and audit the use of privileged accounts (e.g., root, domain admin). Option B is correct because continuous monitoring and auditing of privileged account usage is a foundational PAM requirement, enabling detection of misuse, lateral movement, and privilege escalation. Without auditing, organizations cannot enforce accountability or respond to security incidents involving high-risk accounts.

Exam trap

The trap here is that candidates may confuse PAM with general identity management and choose 'shared accounts for simplicity' (Option A), failing to recognize that PAM specifically enforces individual accountability and credential rotation, not shared access.

How to eliminate wrong answers

Option A is wrong because shared accounts violate non-repudiation and accountability, making it impossible to attribute actions to a specific individual, which is a core PAM goal. Option C is wrong because granting all users administrative rights directly contradicts the principle of least privilege and dramatically increases the attack surface for privilege escalation and ransomware. Option D is wrong because disabling logging for performance eliminates the audit trail required for forensic analysis and compliance, and PAM systems rely on detailed logging (e.g., session recording, keystroke logging) to detect anomalies.

163
Multi-Selectmedium

Which TWO of the following are valid types of data classification labels commonly used in commercial organizations?

Select 2 answers
A.Top Secret
B.Confidential
C.Unclassified
D.Public
E.For Official Use Only
AnswersB, D

"Confidential" is a widely recognized and valid data classification type, commonly applied to sensitive business information whose unauthorized disclosure could cause significant harm or financial loss to an organization. This classification level typically requires strict access controls, encryption, and other protective measures to ensure its integrity and privacy, making it a cornerstone of commercial data protection policies.

Why this answer

Confidential is a valid data classification label in commercial organizations, typically used to protect sensitive business information that could cause harm if disclosed. It is part of common classification schemes such as Public, Internal, Confidential, and Restricted, aligning with ISO/IEC 27001 guidelines for information asset management.

Exam trap

In the ISC2 CISSP exam, it's important to distinguish between government classification levels (Top Secret, Secret, Confidential, Unclassified) and commercial classification labels (Public, Internal, Confidential, Restricted). Candidates often mistakenly apply government terms like Top Secret or Unclassified to commercial scenarios, but these are not typically used in commercial organizations.

164
MCQmedium

OpenID Connect (OIDC) extends OAuth 2.0 primarily by adding which capability?

A.Client credential management
B.Authorization delegation
C.Token introspection
D.User authentication
AnswerD

OpenID Connect (OIDC) primarily extends OAuth 2.0 by adding a standardized layer for user authentication. While OAuth 2.0 focuses solely on authorization, allowing a client to obtain delegated access to protected resources, OIDC introduces the concept of an ID Token. This ID Token, a JSON Web Token (JWT), provides verifiable claims about the authenticated user, enabling the client application to confirm the user's identity and retrieve basic profile information.

Why this answer

OpenID Connect (OIDC) is an identity layer built on top of OAuth 2.0 that primarily adds user authentication. While OAuth 2.0 provides authorization delegation (access tokens for resources), OIDC introduces an ID token (a JSON Web Token, JWT) that contains claims about the authenticated user, enabling the client to verify the user's identity. This is defined in the OIDC specification (OpenID Foundation) and is the key differentiator from plain OAuth 2.0.

Exam trap

The trap here is that candidates often confuse OAuth 2.0's authorization delegation (access tokens for resources) with OIDC's authentication (ID tokens for user identity), leading them to incorrectly select 'Authorization delegation' as the primary addition.

How to eliminate wrong answers

Option A is wrong because client credential management is a feature of OAuth 2.0 itself (e.g., client_id, client_secret, client credentials grant type), not something OIDC adds. Option B is wrong because authorization delegation is the core purpose of OAuth 2.0, not an extension provided by OIDC; OIDC adds authentication on top of that delegation. Option C is wrong because token introspection is an OAuth 2.0 extension (RFC 7662) for validating token status, not a feature introduced by OIDC; OIDC uses the UserInfo endpoint for identity claims.

165
MCQeasy

A user reports that they cannot access a file share after being moved to a different department. The file share is secured with NTFS permissions and share permissions. The user is a member of the 'Marketing' group, but the file share is only accessible by 'Sales' group. What is the most likely reason?

A.The share permissions deny access to Marketing
B.The user is not a member of the Sales group
C.The user's account is disabled
D.The NTFS permissions deny access
AnswerB

This is the correct answer because access to file shares is governed by both share and NTFS permissions, with the most restrictive applying. If the file share's security configuration explicitly grants access only to members of the 'Sales' group, and the user in question belongs to the 'Marketing' group, they will be denied access. The user's lack of membership in the required 'Sales' group directly prevents them from satisfying the access control criteria.

Why this answer

The user is unable to access the file share because the share is explicitly configured to allow access only to the 'Sales' group. Since the user has been moved to a different department and is now a member of 'Marketing' rather than 'Sales', they lack the necessary group membership. Even if share permissions were permissive, NTFS permissions would still need to grant access; however, the core issue is that the user is not in the required group.

This is the most direct and likely reason for the access failure.

Exam trap

The trap here is that candidates often focus on the interplay between share and NTFS permissions (the 'most restrictive' rule) and overlook the simpler, more direct cause: the user simply does not belong to the required group, which is the foundational prerequisite for any access to be granted.

How to eliminate wrong answers

Option A is wrong because share permissions that deny access to 'Marketing' would be an explicit deny, but the scenario states the share is only accessible by 'Sales', implying an allow list, not a deny entry; a deny would override allows but is not the most likely reason given the user's group change. Option C is wrong because a disabled account would prevent all access to any resource, not just this specific file share, and the user is only reporting an issue with this one share. Option D is wrong because NTFS permissions denying access would be a secondary factor; the primary issue is that the user is not a member of the 'Sales' group, and without that membership, NTFS permissions cannot grant access regardless of their configuration.

166
MCQhard

A company is implementing a secure multi-tenant cloud environment. The primary security requirement is that tenants cannot access each other's data even if the hypervisor is compromised. Which architecture best meets this requirement?

A.Encrypt each tenant's data with a single master key stored in the hypervisor.
B.Use a Trusted Execution Environment (TEE) such as Intel SGX to isolate tenant processes and memory.
C.Implement Mandatory Access Control (MAC) on the hypervisor.
D.Use VLANs to isolate tenant traffic at the network layer.
AnswerB

A Trusted Execution Environment (TEE), such as Intel SGX, provides robust hardware-enforced isolation for tenant processes and memory regions. It creates secure "enclaves" where code and data are protected from unauthorized access, even by privileged software like the hypervisor or host operating system. This ensures that a compromise of the underlying cloud infrastructure or hypervisor does not allow an attacker to inspect or tamper with sensitive tenant data or execution within the enclave, providing a strong security boundary crucial for multi-tenant environments.

Why this answer

A Trusted Execution Environment (TEE) like Intel SGX creates hardware-enforced enclaves that isolate tenant processes and memory at the CPU level. Even if the hypervisor is compromised, the enclave's memory is encrypted and inaccessible to the host OS or hypervisor, ensuring tenant data remains confidential. This directly meets the requirement that tenants cannot access each other's data despite a hypervisor breach.

Exam trap

The trap here is that candidates often choose MAC or VLANs because they associate them with isolation, but they fail to recognize that these controls operate at the OS or network layer and do not protect against a compromised hypervisor that has direct memory access.

How to eliminate wrong answers

Option A is wrong because storing a single master key in the hypervisor creates a single point of failure; if the hypervisor is compromised, the attacker can access the master key and decrypt all tenants' data, violating the isolation requirement. Option C is wrong because Mandatory Access Control (MAC) on the hypervisor enforces policy-based access controls but does not protect tenant data if the hypervisor itself is compromised—MAC cannot prevent the hypervisor from reading memory it manages. Option D is wrong because VLANs isolate network traffic at Layer 2, but they do not protect data at rest or in memory; a compromised hypervisor can still access tenant data directly from memory or storage, bypassing network segmentation.

167
MCQeasy

A company uses VLANs to separate traffic between the IT, HR, and Finance departments. A user in the HR VLAN reports that she cannot access a file server located in the IT VLAN. The file server's default gateway is correctly set to the IT VLAN interface. All workstations have correct IP addresses and subnet masks. What is the most likely cause of this issue?

A.Spanning Tree Protocol (STP) is blocking the link between the HR and IT switches.
B.The HR workstation has an incorrect subnet mask.
C.The HR VLAN switch port is incorrectly configured with the wrong VLAN ID.
D.No routing is configured between the HR and IT VLANs.
AnswerD

VLANs are designed to segment a network into distinct Layer 2 broadcast domains, meaning devices in separate VLANs reside on different logical networks. For communication to occur between these isolated VLANs, such as between HR and IT, traffic must be explicitly routed at Layer 3. Without a dedicated router or a Layer 3 switch configured with appropriate routing interfaces (like Switched Virtual Interfaces or SVIs) and routing protocols, packets attempting to traverse VLAN boundaries will be dropped, preventing inter-VLAN connectivity.

Why this answer

VLANs create separate broadcast domains, so traffic between different VLANs must be routed. Since the HR workstation is in a different VLAN than the file server, and no routing is configured between the HR and IT VLANs, the HR workstation cannot reach the file server even though the server's default gateway is correctly set. This is the most likely cause because all other network settings (IP addresses, subnet masks, switch port configurations) are described as correct.

Exam trap

The trap here is that candidates often assume VLANs inherently block all cross-VLAN traffic, but the real issue is the absence of a Layer 3 routing mechanism; VLANs only separate broadcast domains, not routed traffic.

How to eliminate wrong answers

Option A is wrong because Spanning Tree Protocol (STP) blocks redundant links to prevent loops, not to isolate VLAN traffic; STP operates at Layer 2 and does not block links between different VLANs unless a loop exists. Option B is wrong because the question states that all workstations have correct IP addresses and subnet masks, so an incorrect subnet mask is not the issue. Option C is wrong because the question explicitly states that the HR workstation has correct IP settings, and a switch port with the wrong VLAN ID would prevent the workstation from communicating even within its own VLAN, not just across VLANs; the user can access other HR resources, so the port configuration is likely correct.

168
MCQhard

A security architect is designing a network for a high-security data center. The requirement is to ensure that even if an attacker compromises one server, they cannot easily move laterally to other servers in the same data center. Which network design principle should be applied?

A.Principle of least privilege
B.Defense in depth
C.Single point of failure elimination
D.Microsegmentation (e.g., using virtual firewalls on each hypervisor)
AnswerD

Microsegmentation is a network security technique that logically divides a data center or cloud network into distinct, isolated segments down to the individual workload level. By applying granular security policies, often via virtual firewalls or host-based agents, it creates a "zero-trust" environment between applications and servers, significantly limiting an attacker's ability to move laterally across the network even after compromising an initial system.

Why this answer

Microsegmentation (D) is the correct network design principle because it enforces granular, per-workload firewall rules—often implemented via virtual firewalls on each hypervisor or using VXLAN/ACL policies—that restrict east-west traffic between servers. Even if an attacker compromises one server, microsegmentation prevents lateral movement by allowing only explicitly permitted inter-server communication, effectively isolating the breach to the compromised host.

Exam trap

The trap here is that candidates confuse the broad strategy of defense in depth (B) with the specific technical mechanism of microsegmentation, but the question explicitly asks for a network design principle that prevents lateral movement, which is exactly what microsegmentation enforces at the data center network layer.

How to eliminate wrong answers

Option A is wrong because the principle of least privilege governs user and process access rights (e.g., file permissions, RBAC), not network-level isolation between servers; it does not inherently restrict east-west traffic at the network layer. Option B is wrong because defense in depth is a broad security strategy that layers multiple controls (e.g., firewalls, IDS, encryption), but it is not a specific network design principle that directly prevents lateral movement within a data center segment. Option C is wrong because eliminating single points of failure focuses on redundancy and high availability (e.g., dual power supplies, redundant links), not on restricting lateral traffic between servers after a compromise.

169
MCQmedium

During a security assessment, a penetration tester discovers that a web application exposes internal IP addresses in error messages. Which vulnerability category does this represent?

A.Broken access control
B.Sensitive data exposure
C.Security misconfiguration
D.Insecure deserialization
AnswerC

Security misconfiguration is the correct classification because verbose error messages, which reveal internal IP addresses and potentially other system details like software versions or stack traces, are a direct result of improper system hardening. Production environments should be configured to suppress such detailed output, presenting only generic error messages to end-users. This prevents attackers from gathering valuable reconnaissance information that could facilitate further targeted attacks.

Why this answer

Exposing internal IP addresses in error messages is a classic example of a security misconfiguration (C). The web application is likely configured to output detailed error messages (e.g., stack traces or debug information) that include internal network details, which should be suppressed in production environments. This violates the principle of least information disclosure and is categorized under security misconfiguration because it stems from improper default or runtime settings.

Exam trap

The trap here is that candidates confuse the disclosure of internal IP addresses with 'sensitive data exposure' (B), but CISSP categorizes this under security misconfiguration because the root cause is a failure to properly configure error handling, not the inherent sensitivity of the data itself.

How to eliminate wrong answers

Option A is wrong because broken access control refers to failures in enforcing user permissions (e.g., accessing unauthorized resources via path traversal or privilege escalation), not the inadvertent disclosure of internal network information in error outputs. Option B is wrong because sensitive data exposure typically involves the exposure of protected data such as passwords, credit card numbers, or PII, whereas internal IP addresses are not classified as sensitive data under most regulatory frameworks (e.g., GDPR, PCI DSS) unless they reveal system architecture that could aid an attacker. Option D is wrong because insecure deserialization involves the manipulation of serialized objects to execute arbitrary code or bypass authentication, which is unrelated to the verbosity of error messages.

170
Matchingmedium

Match each business continuity term to its definition.

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

Concepts
Matches

Maximum acceptable downtime after a disaster

Maximum acceptable data loss measured in time

Average time between system failures

Average time to repair a failed system

Service level agreement defining performance metrics

Why these pairings

Correct matches: RTO defines the acceptable downtime; RPO defines acceptable data loss; MTD is the total tolerable downtime; BIA is the analysis process identifying critical functions. Common confusions involve swapping time-based metrics (RTO/RPO/MTD) or misapplying process terms (BIA).

171
MCQmedium

An organization is implementing a defense-in-depth strategy for its web application. Which of the following is an example of a compensating control?

A.A firewall blocking port 80
B.Regular vulnerability scanning
C.A web application firewall (WAF) blocking SQL injection
D.Two-factor authentication for administrative access
AnswerC

A Web Application Firewall (WAF) blocking SQL injection is an excellent example of a compensating control. It provides an external layer of protection by inspecting HTTP/S traffic and filtering malicious input, thereby mitigating common web application vulnerabilities like SQL injection, even if the underlying application code has deficiencies in input validation or secure coding practices. This external control compensates for internal application weaknesses.

Why this answer

A compensating control is an alternative security measure implemented when a primary control cannot be applied due to technical or business constraints. In this context, a Web Application Firewall (WAF) blocking SQL injection serves as a compensating control when, for example, source code fixes for input validation are not immediately feasible. The WAF inspects HTTP/HTTPS traffic at the application layer (Layer 7) and uses signature-based or behavioral analysis to detect and block malicious SQL patterns, thereby mitigating the vulnerability without modifying the application code.

Exam trap

The trap here is that candidates often confuse compensating controls with preventive or detective controls, mistakenly selecting a direct security measure like a firewall or two-factor authentication as compensating, when in fact a compensating control is specifically an alternative measure used because the primary control cannot be implemented.

How to eliminate wrong answers

Option A is wrong because a firewall blocking port 80 is a preventive control that restricts network traffic, not a compensating control; it directly enforces a security policy by denying HTTP traffic. Option B is wrong because regular vulnerability scanning is a detective control that identifies weaknesses but does not actively mitigate or compensate for a specific control deficiency. Option D is wrong because two-factor authentication for administrative access is a preventive control that strengthens authentication, not a compensating control that substitutes for an existing control that cannot be implemented.

172
MCQeasy

An organization is developing a business continuity plan (BCP). The IT department has identified a critical application that must be restored within 4 hours of a disruption. Which metric defines the maximum acceptable time that the application can be unavailable?

A.Recovery Time Objective (RTO)
B.Recovery Point Objective (RPO)
C.Mean Time to Repair (MTTR)
D.Mean Time Between Failures (MTBF)
E.Service Level Agreement (SLA)
AnswerA

Recovery Time Objective (RTO) is a crucial metric in business continuity planning, representing the maximum tolerable period of time following a disaster or disruption during which a business process or system can be unavailable before unacceptable consequences occur. It dictates how quickly systems and applications must be restored to an operational state to meet defined business requirements. Establishing a precise RTO guides the selection of appropriate recovery strategies and technologies, ensuring alignment with organizational resilience goals.

Why this answer

The Recovery Time Objective (RTO) defines the maximum acceptable downtime for a critical application after a disruption. In this scenario, the IT department has specified that the application must be restored within 4 hours, which directly aligns with the RTO metric. RTO is a key BCP parameter that drives resource allocation and recovery strategy design.

Exam trap

The trap here is confusing RTO with RPO: candidates often pick RPO because they think 'recovery' refers to time, but RPO is about data loss tolerance, not downtime duration.

How to eliminate wrong answers

Option B (Recovery Point Objective) is wrong because RPO defines the maximum acceptable data loss measured in time (e.g., how far back in time data may be lost), not the allowable downtime duration. Option C (Mean Time to Repair) is wrong because MTTR is a reliability metric that measures the average time to repair a failed component, not a predefined target for acceptable downtime. Option D (Mean Time Between Failures) is wrong because MTBF measures the average operational time between failures, used for availability calculations, not for defining recovery time limits.

Option E (Service Level Agreement) is wrong because an SLA is a contractual commitment that may include RTOs, but the RTO itself is the specific metric defining maximum acceptable unavailability.

173
Multi-Selecthard

An organization is developing a privacy program. Which THREE of the following are core principles of privacy by design? (Select 3)

Select 3 answers
A.Open data sharing
B.Data minimization
C.Purpose limitation
D.Maximum data retention
E.Storage limitation
AnswersB, C, E

This core privacy principle dictates that organizations must limit the collection of personal data to what is strictly relevant and necessary to accomplish the specified, legitimate processing purposes. By reducing the volume of personally identifiable information (PII) ingested, organizations significantly lower their overall risk profile and potential breach impact.

Why this answer

Privacy by design includes data minimization, purpose limitation, and storage limitation among its principles.

174
MCQmedium

A security administrator is configuring a stateful firewall to allow HTTP traffic from the internet to a web server. The firewall uses a default-deny policy. What is the correct rule placement?

A.Place the allow rule after the deny all rule
B.Use a stateless firewall instead
C.Use an implicit deny rule
D.Place the allow rule before the deny all rule
AnswerD

Ensures the traffic is permitted before the default deny.

Why this answer

In a stateful firewall with a default-deny policy, rules are processed in sequential order from top to bottom. Placing the allow rule before the deny all rule ensures that HTTP traffic (TCP port 80) is explicitly permitted before the catch-all deny rule drops all unmatched packets. If the deny all rule were placed first, all traffic would be dropped, including the intended HTTP traffic, making the allow rule unreachable.

Exam trap

ISC2 often tests the misconception that a default-deny policy automatically allows traffic if a permit rule exists anywhere in the ACL, but in reality, rule order determines which rule is applied first, and a deny all placed before the permit will block all traffic.

How to eliminate wrong answers

Option A is wrong because placing the allow rule after the deny all rule would cause the deny all rule to match and drop all traffic first, rendering the allow rule ineffective and blocking legitimate HTTP traffic. Option B is wrong because a stateless firewall would not track connection state, making it unsuitable for allowing return traffic from the web server without explicit rules for ephemeral ports, whereas a stateful firewall automatically permits return traffic for established connections. Option C is wrong because an implicit deny rule is already the default behavior at the end of the rule set; the question asks for explicit rule placement, and relying solely on implicit deny does not solve the ordering requirement to allow HTTP traffic.

175
MCQeasy

A company has implemented data classification labels such as 'Public', 'Internal', 'Confidential', and 'Restricted'. Which control is most appropriate for protecting 'Confidential' data?

A.Data masking for all users
B.Encryption at rest and in transit
C.Removing all access controls to streamline sharing
D.Public posting on the company website
AnswerB

Encryption at rest and in transit is a foundational security control directly supporting data classification by ensuring confidentiality throughout the data lifecycle. Encryption at rest protects data stored on various media from unauthorized access, even if the storage device is compromised. Encryption in transit safeguards data as it traverses networks, preventing eavesdropping or interception, thereby maintaining the integrity and confidentiality of classified information during transmission between systems or users.

Why this answer

Encryption at rest and in transit is the most appropriate control for protecting 'Confidential' data because it renders the data unreadable to unauthorized parties both when stored on disk (e.g., AES-256) and when transmitted over networks (e.g., TLS 1.3). This directly enforces confidentiality by ensuring that even if an attacker gains access to the storage medium or intercepts network traffic, the data remains protected. Data classification labels like 'Confidential' require strong cryptographic controls to meet the principle of least privilege and compliance mandates such as GDPR or HIPAA.

Exam trap

The trap here is that candidates often pick data masking (Option A) thinking it protects confidentiality, but masking is a de-identification technique for specific use cases like testing, not a primary control for protecting classified data in production.

How to eliminate wrong answers

Option A is wrong because data masking for all users would prevent even authorized users from seeing the actual data, breaking business functionality; masking is typically applied only to non-production environments or specific roles, not universally. Option C is wrong because removing all access controls to streamline sharing would completely undermine confidentiality, exposing 'Confidential' data to anyone and violating the fundamental security principle of least privilege. Option D is wrong because public posting on the company website would make the data accessible to everyone, directly contradicting the need to protect 'Confidential' data and likely violating regulatory requirements.

176
MCQhard

An organization implements a data loss prevention (DLP) solution. Which action is most effective for protecting data at rest on endpoint devices?

A.Encryption of files
B.User awareness training
C.USB port blocking
D.Network DLP monitoring
AnswerA

Encryption of files directly protects data at rest by rendering it unreadable to unauthorized individuals, even if it is successfully exfiltrated from the organization's control. This method ensures that sensitive information remains confidential, providing a critical layer of defense against data breaches where DLP might fail to prevent the initial data movement. It is a foundational technical control for data protection on endpoints.

Why this answer

Encryption of files directly protects data at rest on endpoint devices by rendering the data unreadable without the appropriate decryption key. This ensures that even if an endpoint is lost, stolen, or accessed by an unauthorized user, the data remains confidential. DLP solutions often integrate with file-level encryption (e.g., BitLocker, FileVault, or EFS) to enforce policy-based encryption on sensitive files at rest.

Exam trap

ISC2 often tests the distinction between data states (at rest, in motion, in use) and the specific controls that apply to each; the trap here is that candidates confuse network DLP (data in motion) with endpoint DLP (data at rest), or they select a general security control like user training instead of the direct technical control for data at rest.

How to eliminate wrong answers

Option B is wrong because user awareness training is a preventive administrative control that reduces human error but does not provide a technical mechanism to protect data at rest on endpoints; it addresses behavior, not the data itself. Option C is wrong because USB port blocking is a physical security control that prevents data exfiltration via removable media but does not protect data already stored on the endpoint's hard drive; it addresses data in motion, not data at rest. Option D is wrong because network DLP monitoring inspects data in transit across the network, not data stored locally on endpoint devices; it is effective for data in motion but cannot enforce protection for data at rest on the endpoint.

177
MCQeasy

An organization wants to test its security controls by simulating an attack where the tester has no prior knowledge of the internal network. This is known as a:

A.Grey box test
B.White box test
C.Red team exercise
D.Black box test
AnswerD

A black box test simulates an external attacker with absolutely no prior knowledge of the target system's internal architecture, network topology, or source code. Testers approach the system purely from an outsider's perspective, relying on public information, reconnaissance, and common attack methodologies to discover vulnerabilities. This method directly assesses how well an organization's external defenses would withstand an attack from an unknown, unprivileged adversary.

Why this answer

A black box test (D) is correct because the tester has no prior knowledge of the internal network, simulating an external attacker with zero inside information. This approach evaluates the security controls from an unprivileged, external perspective, relying solely on publicly available information and active reconnaissance. It is the purest form of adversarial simulation for testing perimeter defenses and detection capabilities.

Exam trap

The trap here is confusing the testing methodology (black/grey/white box) with the team structure (red team exercise), leading candidates to select 'Red team exercise' because it sounds like an attack simulation, but the question explicitly defines the knowledge level, not the team composition.

How to eliminate wrong answers

Option A is wrong because a grey box test involves partial knowledge of the internal network, such as network diagrams or credentials, which contradicts the 'no prior knowledge' requirement. Option B is wrong because a white box test provides full knowledge of the internal network, including source code, architecture, and credentials, which is the opposite of the described scenario. Option C is wrong because a red team exercise is a broader, goal-oriented adversarial simulation that may use black, grey, or white box methodologies; the question specifically asks for the type of test based on knowledge level, not the team structure.

178
MCQeasy

A security analyst is evaluating the risk of a data breach. The asset value of the database is $100,000, and the exposure factor is 0.5. If the annual rate of occurrence is 0.2, what is the annualized loss expectancy (ALE)?

A.$10,000
B.$100,000
C.$50,000
D.$20,000
AnswerA

This value represents the Annualized Loss Expectancy (ALE), which is derived by multiplying the Single Loss Expectancy (SLE) by the Annualized Rate of Occurrence (ARO). Given an SLE of $50,000 and an ARO of 0.2 (meaning a 20% chance of the event occurring annually), the correct ALE calculation is $50,000 * 0.2, resulting in $10,000. This figure quantifies the expected financial loss from a specific risk over a one-year period.

Why this answer

SLE = AV * EF = $100,000 * 0.5 = $50,000. ALE = SLE * ARO = $50,000 * 0.2 = $10,000.

179
MCQmedium

A security architect is designing a zero-trust network. Which principle is fundamental to a zero-trust architecture (ZTA) such as BeyondCorp?

A.Never trust, always verify
B.Trust but verify
C.Trust internal users implicitly
D.Trust network location as a primary factor
AnswerA

This is the core principle of zero trust.

Why this answer

In a zero-trust architecture (ZTA) like Google's BeyondCorp, the foundational principle is 'never trust, always verify.' This means no entity—user, device, or network—is trusted by default, regardless of its location (inside or outside the corporate perimeter). Every access request must be authenticated, authorized, and continuously validated before granting access to resources, eliminating implicit trust based on network location.

Exam trap

The trap here is that candidates may confuse 'trust but verify' (a common security mantra) with zero-trust, but the key distinction is that zero-trust removes all implicit trust, including for internal users and devices.

How to eliminate wrong answers

Option B is wrong because 'trust but verify' still assumes an initial level of trust, which contradicts zero-trust's requirement of no implicit trust; it is a legacy perimeter-based model. Option C is wrong because trusting internal users implicitly is the opposite of zero-trust, which treats all users as potential threats until verified. Option D is wrong because zero-trust explicitly rejects network location as a primary factor for trust; instead, it relies on identity, device health, and context for access decisions.

180
MCQmedium

A security analyst discovers an attack where an attacker sets up a rogue wireless access point with a legitimate SSID to trick users into connecting. Once connected, the attacker captures credentials. This type of attack is known as:

A.Deauthentication attack
B.Rogue AP attack
C.Evil twin attack
D.Karma attack
AnswerC

An evil twin attack specifically involves an attacker setting up a malicious access point that mimics the SSID (Service Set Identifier) and often the MAC address of a legitimate, trusted wireless network. The objective is to trick unsuspecting users into connecting to the fraudulent AP, believing it to be the authentic network. Once connected, the attacker can intercept traffic, capture login credentials through fake portals, or launch further attacks, making it a highly effective method for credential harvesting.

Why this answer

This is an evil twin attack because the attacker creates a rogue access point that broadcasts the same SSID as a legitimate network, tricking users into connecting to it. Once connected, the attacker can capture credentials or other sensitive data by acting as a man-in-the-middle. The key differentiator is the impersonation of a legitimate SSID to deceive users, not just the presence of an unauthorized AP.

Exam trap

The trap here is that candidates confuse 'rogue AP' (any unauthorized AP) with 'evil twin' (a specific type of rogue AP that impersonates a legitimate SSID), leading them to choose option B instead of C.

How to eliminate wrong answers

Option A is wrong because a deauthentication attack involves sending deauth frames (typically from a tool like aireplay-ng) to disconnect clients from a legitimate AP, often as a precursor to an evil twin attack, but it is not the attack itself. Option B is wrong because a rogue AP attack is a broader category that includes any unauthorized AP on the network, but it does not specifically require the AP to impersonate a legitimate SSID to trick users; a rogue AP might simply be a misconfigured or malicious device connected to the wired network. Option D is wrong because a Karma attack exploits the probe request behavior of wireless clients that automatically connect to any network with a previously saved SSID, but it does not involve setting up an AP with a legitimate SSID to trick users; instead, it responds to any probe request with a matching SSID.

181
MCQeasy

Which of the following is an example of a security policy?

A.Step 1: Log in, Step 2: Enter code, Step 3: Access system
B.It is recommended to change passwords every 90 days
C.All employees must use multi-factor authentication
D.Use passwords of at least 12 characters with mixed case and numbers
AnswerC

A security policy is a high-level, mandatory statement issued by management that defines the organization's overall security objectives and requirements. This statement clearly dictates a non-negotiable requirement for all employees, establishing a foundational security control to protect organizational assets. It addresses *what* is required for security, without specifying the technical implementation details.

Why this answer

A policy is a high-level mandatory statement that reflects management's intent. 'All employees must use multi-factor authentication' is a mandatory directive.

182
MCQeasy

You are the security manager for a manufacturing company with a large facility that houses production servers and sensitive intellectual property. The facility has a single physical entrance that uses a card reader for access control. During a routine audit, you find that the door prop alarm has been bypassed by taping a magnet to the sensor, allowing the door to stay open without triggering an alert. The security guard station is located 200 feet away and does not have a direct line of sight to the door. Which control should you implement FIRST to prevent unauthorized physical access?

A.Replace the card reader with a biometric fingerprint scanner.
B.Increase the frequency of security patrols around the entrance.
C.Implement a mantrap with two interlocking doors at the entrance.
D.Install a video surveillance camera to monitor the entrance.
AnswerC

Implementing a mantrap with two interlocking doors is the most effective preventive control against tailgating and door propping. This system ensures that only one door can be open at a time, physically preventing unauthorized individuals from following an authenticated person through or holding a door open. It forces single-person entry per successful authentication, creating a secure vestibule that actively mitigates both threats by design.

Why this answer

Implement a mantrap with two interlocking doors. A mantrap is a preventive physical control that effectively prevents tailgating and door propping by requiring one person to authenticate before the second door opens. This directly addresses the bypassed door prop alarm.

Option A (biometric scanner) improves authentication but does not prevent door propping. Option B (patrols) is a detective/reactive control and may not catch the propping in time. Option D (video surveillance) is detective, not preventive.

183
MCQmedium

A security architect is designing a system for a government agency that requires strict confidentiality controls. Data must be classified at multiple levels (e.g., Top Secret, Secret, Confidential). Users at a lower classification should not be able to read data at a higher classification, and users at a higher classification should not be able to write data to a lower classification. Which security model enforces these rules?

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

The Bell-LaPadula model is a state machine model designed specifically to enforce confidentiality in systems handling classified information, such as those used by governments. It prevents unauthorized disclosure by implementing two core rules: the Simple Security Property ("no read up") and the *-Property ("no write down"). These rules ensure that subjects can only access information at or below their security clearance level and cannot write information to a lower security level, thus preventing information flow to less secure domains.

Why this answer

The Bell-LaPadula model is a state machine model focused on confidentiality. It enforces 'no read up' and 'no write down' to prevent unauthorized access to higher classification data and prevent downgrading of classified information.

184
MCQeasy

A security engineer notices that the IKE phase 1 lifetime is set to 3600 seconds. What is a potential security implication?

A.Longer lifetimes reduce rekeying overhead
B.Shorter lifetimes increase performance
C.Short lifetimes may cause frequent reauthentication and potential disruption
D.The lifetime should be at least 86400 seconds
AnswerC

Short IKE Phase 1 lifetimes necessitate frequent reauthentication, which significantly increases the operational overhead and the potential for service disruption. Each rekeying attempt presents an opportunity for failure due to network issues, misconfigurations, or resource exhaustion on either endpoint. Such frequent re-establishment of the secure channel can lead to intermittent connectivity problems or complete outages if the reauthentication process repeatedly fails, impacting availability and user experience.

Why this answer

IKE phase 1 establishes a secure authenticated channel for subsequent IKE phase 2 negotiations. A lifetime of 3600 seconds (1 hour) is relatively short, causing frequent reauthentication. This can lead to service disruption if the rekeying process fails or if the VPN peers experience transient network issues, potentially dropping active tunnels and impacting production traffic.

Exam trap

ISC2 often tests the trade-off between security and availability: candidates may incorrectly assume shorter lifetimes are always more secure without considering the operational risk of frequent reauthentication causing tunnel drops.

How to eliminate wrong answers

Option A is wrong because longer lifetimes reduce rekeying overhead, but the question asks for a security implication of the given short lifetime, not a benefit of longer lifetimes. Option B is wrong because shorter lifetimes do not increase performance; they increase computational overhead and latency due to more frequent Diffie-Hellman exchanges and authentication. Option D is wrong because there is no mandatory minimum of 86400 seconds (24 hours); RFC 7296 recommends a default of 3600 seconds for IKEv1 phase 1, and shorter lifetimes can actually improve security by limiting exposure of the session key, though they risk disruption.

185
MCQmedium

Under GDPR, which of the following is a valid lawful basis for processing personal data?

A.Corporate policy
B.Profit motive
C.Marketing preference
D.Vital interests
AnswerD

Vital interests is a lawful basis under GDPR Article 6(1)(d) that permits the processing of personal data when it is necessary to protect the life of the data subject or another natural person. This basis is typically invoked in emergency situations where obtaining consent is impossible or impractical, such as medical emergencies, humanitarian crises, or public health threats. It represents a very high threshold and is generally reserved for situations involving a serious threat to life or physical integrity, making it a basis of last resort rather than routine processing.

Why this answer

GDPR Article 6 lists lawful bases including consent, contract, legal obligation, vital interests, public task, and legitimate interests. 'Vital interests' is a valid basis.

186
MCQeasy

A medium-sized financial services company has a flat network topology with no segmentation between the corporate LAN and the server farm. The security team recently deployed a host-based intrusion detection system (HIDS) on all critical servers. Over the past week, the HIDS has generated multiple high-severity alerts indicating outbound connections from a database server to an external IP address in a foreign country, occurring every hour and lasting only a few seconds. The database server contains sensitive customer data. The company's incident response plan (IRP) has not been updated in two years, and the CISO wants to ensure a response that minimizes business disruption while protecting data. The IT team is small, and the security analyst on duty suspects a data exfiltration attempt but is unsure. What should the analyst do FIRST?

A.Disconnect the database server from the network at the switch port and preserve the system state for forensic analysis
B.Run a full antivirus scan on the database server and update the HIDS signatures
C.Review the firewall logs to identify all external IPs the server has contacted
D.Immediately notify the company's legal department and public relations team
AnswerA

Disconnecting the database server at the switch port immediately halts any ongoing data exfiltration or malicious activity, achieving critical containment. Preserving the system state, through memory capture or disk imaging, ensures that volatile evidence and forensic artifacts are maintained for subsequent detailed analysis without alteration by continued network access or system changes. This action prioritizes stopping the active breach and securing evidence for a thorough investigation.

Why this answer

The immediate priority is to contain the suspected data exfiltration by isolating the database server from the network, which stops the outbound connections and preserves volatile evidence for forensic analysis. Disconnecting at the switch port (e.g., via `shutdown` interface command) is a rapid, reversible action that minimizes business disruption compared to pulling the power cable, and it aligns with the incident response phase of containment before eradication or recovery. The HIDS alerts indicate a persistent, short-lived outbound connection pattern, which strongly suggests a beaconing or data-stealing malware that must be contained first to prevent further data loss.

Exam trap

The trap here is that candidates may choose Option C (review firewall logs) because they think gathering evidence first is the correct incident response step, but the CISSP emphasizes containment as the immediate priority when there is an active, ongoing threat of data exfiltration.

How to eliminate wrong answers

Option B is wrong because running a full antivirus scan and updating HIDS signatures is a detection and remediation step that should occur after containment; it does not stop the ongoing outbound connections and may alert the attacker if the malware detects the scan. Option C is wrong because reviewing firewall logs to identify external IPs is a forensic analysis step that should be performed after containment; delaying containment to gather logs allows the potential exfiltration to continue. Option D is wrong because immediately notifying legal and PR teams is premature without first confirming the incident and containing the threat; such notification is part of the post-containment communication phase and could cause unnecessary business disruption or panic.

187
MCQmedium

A company is designing a recovery site for its critical database. The recovery time objective (RTO) is 2 hours, and the recovery point objective (RPO) is 15 minutes. Which of the following replication strategies is BEST suited?

A.Asynchronous replication to a warm site
B.Full backups every 24 hours to a cold site
C.Weekly snapshots to a warm site
D.Synchronous replication to a hot site
AnswerD

Synchronous replication ensures that data is written to both the primary and recovery sites simultaneously, guaranteeing zero data loss (RPO of near zero) in the event of a primary site failure. Coupled with a hot site, which is fully equipped with active hardware, network, and data, this configuration allows for immediate failover with minimal downtime, effectively meeting stringent Recovery Time Objectives (RTOs) for critical systems.

Why this answer

Synchronous replication writes data to both the primary and the hot site simultaneously, ensuring zero data loss upon failover. With an RPO of 15 minutes, synchronous replication can meet this requirement because it commits transactions at both sites before acknowledging completion. A hot site is fully configured and ready to take over within the RTO of 2 hours, making this combination the best fit.

Exam trap

The trap here is that candidates often choose asynchronous replication (Option A) thinking it is sufficient for a 15-minute RPO, but they overlook that asynchronous replication can have variable lag that may exceed the RPO, especially under high write loads or network congestion.

How to eliminate wrong answers

Option A is wrong because asynchronous replication introduces a replication lag that can exceed the 15-minute RPO, as data is sent in batches and may not be fully current at the recovery site. Option B is wrong because full backups every 24 hours to a cold site cannot meet the 15-minute RPO (potential data loss of up to 24 hours) and the cold site would require significant time to restore, likely exceeding the 2-hour RTO. Option C is wrong because weekly snapshots provide a recovery point that is up to 7 days old, far exceeding the 15-minute RPO, and a warm site may require additional configuration time that could jeopardize the 2-hour RTO.

188
MCQeasy

A security professional is tasked with testing the effectiveness of security controls in a production environment without causing disruption. Which type of assessment should be performed?

A.Penetration test
B.Red team exercise
C.Vulnerability scan
D.Social engineering test
AnswerC

A vulnerability scan is an automated, non-intrusive assessment that identifies known security weaknesses, misconfigurations, and missing patches in systems and applications. It passively checks for indicators of vulnerabilities without attempting to exploit them, making it a safe and efficient method for regularly assessing technical controls in production environments without causing disruption.

Why this answer

A vulnerability scan is the correct choice because it is a non-intrusive, automated assessment that identifies known vulnerabilities (e.g., missing patches, misconfigurations) by comparing system states against a database of CVEs and configuration benchmarks (e.g., CIS benchmarks). It does not exploit vulnerabilities or generate attack traffic, making it safe for production environments. In contrast, penetration tests and red team exercises involve active exploitation and simulated attacks that risk service disruption.

Exam trap

The trap here is that candidates often confuse a vulnerability scan with a penetration test, assuming both involve active exploitation, but the key distinction is that a vulnerability scan is passive and non-destructive, while a penetration test is active and potentially disruptive.

How to eliminate wrong answers

Option A is wrong because a penetration test involves active exploitation of vulnerabilities to gain unauthorized access, which can cause system crashes, data corruption, or service interruptions in a production environment. Option B is wrong because a red team exercise is a full-scope, adversarial simulation that includes social engineering, physical breaches, and active exploitation, all of which carry a high risk of disrupting operations. Option D is wrong because a social engineering test targets human behavior (e.g., phishing emails, pretexting calls) and does not directly assess the effectiveness of technical security controls such as firewalls, IDS/IPS, or patch management.

189
MCQhard

An organization is implementing privacy by design in a new application that collects user location data. Which practice best aligns with the data minimization principle?

A.Encrypting location data both at rest and in transit
B.Anonymizing location data after collection
C.Obtaining explicit consent from users before collection
D.Collecting location data only when the app is actively in use
AnswerD

This approach directly embodies the 'data minimization' principle of Privacy by Design by ensuring that location data is only acquired when it is essential for the application's active functionality. By limiting collection to periods of active use, the organization significantly reduces the overall volume of sensitive personal data held, thereby mitigating potential privacy risks and demonstrating a proactive commitment to user privacy.

Why this answer

Data minimization requires collecting only the data necessary for the specified purpose. Collecting location data only when the app is actively in use reduces unnecessary data collection.

190
MCQeasy

Which of the following is the primary purpose of a security assessment?

A.To identify and evaluate security risks
B.To fix all vulnerabilities
C.To achieve compliance with regulations
D.To punish non-compliant employees
AnswerA

A security assessment systematically examines an organization's information systems, processes, and infrastructure to pinpoint vulnerabilities and potential threats. Its primary goal is to analyze the likelihood of these threats exploiting identified weaknesses and the potential impact, thereby quantifying the associated risks to organizational assets. This comprehensive evaluation informs strategic decision-making for effective risk treatment and resource allocation.

Why this answer

A security assessment's primary purpose is to systematically identify and evaluate security risks by analyzing assets, threats, vulnerabilities, and existing controls. This aligns with the NIST SP 800-115 framework, which defines assessment as the process of determining how effectively an entity is meeting specific security objectives, not as a remediation or enforcement activity.

Exam trap

The trap here is that candidates confuse the assessment phase with the remediation phase, assuming the primary goal is to fix vulnerabilities, when in fact the assessment stops at identification and evaluation.

How to eliminate wrong answers

Option B is wrong because fixing all vulnerabilities is the goal of remediation or vulnerability management, not the assessment itself; assessment only identifies and evaluates, leaving remediation to subsequent processes. Option C is wrong because achieving compliance is a possible outcome or driver, but the primary purpose is risk identification and evaluation, not merely meeting regulatory checklists. Option D is wrong because punishing non-compliant employees is a disciplinary action unrelated to the technical evaluation of security posture; assessments focus on systems and processes, not personnel discipline.

191
MCQhard

A network engineer is configuring an IPsec VPN in tunnel mode. Which IPsec protocol provides both authentication and encryption of the entire IP packet?

A.ESP (Encapsulating Security Payload)
B.IKE (Internet Key Exchange)
C.ISAKMP
D.AH (Authentication Header)
AnswerA

ESP provides both encryption and authentication.

Why this answer

ESP (Encapsulating Security Payload) in tunnel mode provides both authentication and encryption for the entire original IP packet, including the original header and payload. It encapsulates the packet with a new IP header and ESP trailer, ensuring confidentiality via encryption and integrity via authentication. This makes it the correct choice for a VPN requiring both security services.

Exam trap

A common pitfall is thinking AH (Authentication Header) provides encryption because it offers authentication, but AH only ensures integrity and origin authentication—it does not encrypt. For both authentication and encryption, ESP must be used.

How to eliminate wrong answers

Option B (IKE) is wrong because IKE is a key exchange protocol used to establish security associations (SAs) for IPsec, not a protocol that directly provides authentication and encryption of IP packets. Option C (ISAKMP) is wrong because ISAKMP defines the framework for key exchange and SA negotiation, but it does not itself encrypt or authenticate packets; it relies on protocols like IKE for actual keying material. Option D (AH) is wrong because AH provides authentication and integrity but no encryption, so it cannot encrypt the entire IP packet as required by the question.

192
MCQeasy

Which role in an incident response team is primarily responsible for coordinating communication with external parties, such as the media and regulators?

A.Legal counsel
B.Incident manager
C.Forensic investigator
D.Communications lead
AnswerD

The Communications Lead is the designated individual primarily responsible for developing and executing the incident communication strategy. This critical role involves crafting accurate, timely, and consistent messages for all internal and external stakeholders, including employees, customers, partners, regulators, and the media. They manage public relations, coordinate press releases, and ensure that all official statements align with the incident response objectives and organizational values.

Why this answer

The communications lead manages external messaging during an incident.

193
MCQmedium

An organization is implementing network segmentation. They need to place publicly accessible servers (e.g., web and email) in a separate network that is isolated from the internal LAN but still allows controlled access from the internet. Which architecture should they use?

A.DMZ
B.Micro-segmentation
C.VPN
D.VLAN
AnswerA

A Demilitarized Zone (DMZ) is a perimeter network designed to host public-facing services, such as web servers or email servers, that need to be accessible from the internet while protecting the internal private network. It acts as a buffer zone, typically secured by two firewalls, allowing controlled inbound and outbound traffic to specific services without exposing the internal LAN directly to external threats. This architecture provides a critical layer of security by isolating public assets from the internal network.

Why this answer

A DMZ (demilitarized zone) is a network segment that sits between the internet and the internal LAN, hosting publicly accessible servers like web and email. It uses firewall rules to allow inbound traffic from the internet to the DMZ servers while blocking direct access to the internal network, and typically permits only specific outbound responses or updates from the DMZ to the internal LAN. This architecture provides the isolation and controlled access required by the scenario.

Exam trap

The trap here is that candidates confuse VLANs with DMZs, assuming that a VLAN alone provides security isolation from the internet, when in fact VLANs only segment Layer 2 traffic and require additional firewall rules to control access—unlike a DMZ which is specifically designed for public-facing servers with explicit security policies.

How to eliminate wrong answers

Option B (Micro-segmentation) is wrong because it focuses on granular east-west traffic control within a data center or internal network using software-defined policies, not on isolating public-facing servers from the internet and internal LAN. Option C (VPN) is wrong because it creates an encrypted tunnel for remote users to access an internal network, not for hosting publicly accessible servers with controlled internet access. Option D (VLAN) is wrong because it segments traffic at Layer 2 within a broadcast domain but does not inherently provide security isolation or firewall-based access control from the internet; a VLAN alone cannot enforce the required inbound/outbound filtering.

194
MCQmedium

A security analyst is reviewing a web application and notices that it includes a feature that allows users to view their own profile by providing a user ID in the URL (e.g., /profile?userid=123). The application does not verify that the logged-in user owns that profile. Which vulnerability is present?

A.Security misconfiguration
B.Cross-site scripting (XSS)
C.Insecure direct object reference (IDOR)
D.Cross-site request forgery (CSRF)
AnswerC

Insecure direct object reference (IDOR) occurs when a web application exposes a direct reference to an internal implementation object, such as a file, directory, or database key, and fails to verify that the user is authorized to access that object. Attackers can manipulate these references, often found in URL parameters or form fields, to access or modify data belonging to other users or system files. The scenario directly aligns with an IDOR vulnerability, as it involves bypassing authorization by directly referencing an object.

Why this answer

Insecure Direct Object References (IDOR) occur when an application exposes direct references to internal objects (like user IDs) without proper access control checks. This allows an attacker to access other users' data by manipulating the ID.

195
MCQmedium

In a qualitative risk assessment, a risk with a likelihood rating of 'High' and an impact rating of 'Critical' would typically fall into which category?

A.High risk
B.Medium risk
C.Low risk
D.De minimis risk
AnswerA

In a qualitative risk assessment, "High risk" is assigned when both the likelihood of a threat event occurring and the potential impact of that event on organizational assets or operations are rated as high or critical. This combination signifies a significant exposure that demands immediate attention and substantial resource allocation for mitigation, as the potential for severe damage is both probable and substantial.

Why this answer

In a typical 5x5 risk matrix, high likelihood and critical impact place the risk in the 'High' or 'Extreme' risk category, requiring immediate action.

196
MCQeasy

An organization wants to implement a password policy that balances security and usability. Which of the following is the BEST practice according to current NIST guidelines?

A.Compare new passwords against a list of known compromised passwords
B.Set maximum password length to 8 characters
C.Require password changes every 30 days
D.Enforce a minimum of one uppercase, one lowercase, one digit, and one special character
AnswerA

Comparing new passwords against a list of known compromised passwords, often referred to as a "blacklist" or "denylist," is a highly effective modern security practice. This method prevents users from selecting passwords that have already been exposed in data breaches, significantly mitigating the risk of credential stuffing attacks where attackers try known username/password combinations across multiple services. By proactively blocking weak or compromised credentials, organizations enhance their overall security posture without imposing burdensome complexity rules on users. This approach directly addresses the widespread problem of password reuse.

Why this answer

NIST SP 800-63B explicitly recommends checking passwords against a list of known compromised passwords (e.g., from previous breaches) rather than enforcing arbitrary complexity rules. This approach directly mitigates credential stuffing and dictionary attacks by rejecting passwords that have already been exposed, while avoiding user frustration from frequent changes or complex composition requirements.

Exam trap

The trap here is that many candidates cling to outdated complexity rules (Option D) or frequent rotation (Option C) because they were once considered security best practices, but NIST now prioritizes breach-checking and longer, memorable passwords over arbitrary composition and expiry.

How to eliminate wrong answers

Option B is wrong because setting a maximum password length to 8 characters contradicts NIST guidance, which recommends a minimum of 8 characters but encourages longer passwords (up to 64 characters or more) to resist brute-force attacks. Option C is wrong because mandatory password changes every 30 days are discouraged by NIST SP 800-63B; frequent changes often lead to weaker passwords and are only recommended when there is evidence of compromise. Option D is wrong because enforcing complex composition rules (uppercase, lowercase, digit, special character) is no longer considered a best practice by NIST; such rules often result in predictable patterns (e.g., 'Password1!') and do not effectively defend against modern attacks like credential stuffing.

197
MCQmedium

An organization requires a commercial integrity model where users cannot modify data in higher integrity levels and cannot read data from lower integrity levels. Which model should they implement?

A.Bell-LaPadula
B.Clark-Wilson
C.Biba
D.Take-Grant
AnswerC

The Biba integrity model is specifically designed to prevent data corruption and maintain data integrity by enforcing a strict hierarchical integrity policy. Its primary rules are 'no write up' (Simple Integrity Property) and 'no read down' (*-Integrity Property), which prevent subjects from writing to objects of higher integrity or reading from objects of lower integrity. This model ensures that high-integrity data is not contaminated by low-integrity data, making it ideal for scenarios requiring strong data trustworthiness.

Why this answer

The Biba model addresses integrity through *no write up* and *no read down* rules.

198
MCQmedium

A security analyst discovers that a business unit is storing sensitive data on a file share without classification labels. What is the first step to remediate?

A.Move the data to a secure server
B.Immediately delete the data
C.Notify the data owner to classify the data
D.Encrypt the file share
AnswerC

Notifying the data owner is the most appropriate first step because the data owner is ultimately accountable for the data's protection, including its classification. Classification dictates the appropriate security controls (e.g., encryption, access controls, retention policies) required to protect the data's confidentiality, integrity, and availability. Without proper classification, any security measures implemented would be based on assumptions rather than defined organizational policy and risk appetite, potentially leading to misallocated resources or inadequate protection.

Why this answer

The first step in remediating unclassified sensitive data is to notify the data owner, who is responsible for assigning classification labels based on organizational policy. Without classification, subsequent security controls (e.g., encryption, access controls) cannot be correctly applied because the data's sensitivity level is unknown. This aligns with the CISSP principle that data classification must precede protection mechanisms.

Exam trap

The trap here is that candidates often jump to technical controls (encryption, moving data) instead of recognizing that classification is a prerequisite governance step, as emphasized in the CISSP Asset Security domain.

How to eliminate wrong answers

Option A is wrong because moving data to a secure server without first classifying it may misapply controls (e.g., over- or under-protection) and does not address the root cause of missing labels. Option B is wrong because immediately deleting data violates data retention policies and could destroy business-essential information without authorization. Option D is wrong because encrypting the file share without classification may apply inappropriate cryptographic strength or key management, and encryption does not resolve the missing classification labels required for proper data governance.

199
MCQhard

A security manager is evaluating risk treatment options for a high-impact, low-probability risk. Which approach is most appropriate?

A.Transfer
B.Accept
C.Avoid
D.Mitigate
AnswerA

Risk transfer involves shifting the financial burden of a potential loss to a third party, typically through insurance policies or contractual agreements with vendors. While the organization retains ultimate accountability for the risk, the financial impact of a catastrophic yet rare event is absorbed by the insurer or service provider. This strategy is particularly effective for high-impact, low-probability risks where the cost of complete mitigation is prohibitive, but the potential loss is too great to accept.

Why this answer

Transfer is the most appropriate approach for a high-impact, low-probability risk because it shifts the financial burden of a rare but severe event to a third party, such as through cyber insurance or outsourcing. This aligns with the risk management principle that low-probability, high-impact risks are often uneconomical to mitigate fully, making transfer a cost-effective strategy. For example, purchasing a cyber liability policy with specific coverage for data breaches ensures the organization does not bear the full recovery cost.

Exam trap

The trap here is that candidates often choose 'Mitigate' because they assume all high-impact risks require active reduction, failing to recognize that transfer is a distinct and often more cost-effective strategy for low-probability events.

How to eliminate wrong answers

Option B (Accept) is wrong because accepting a high-impact risk without active treatment is imprudent; acceptance is reserved for low-impact risks where the cost of treatment exceeds the potential loss. Option C (Avoid) is wrong because avoidance would require eliminating the activity causing the risk, which may not be feasible or strategic for a low-probability event that could still yield significant business benefits. Option D (Mitigate) is wrong because mitigation involves implementing controls to reduce likelihood or impact, but for a low-probability, high-impact risk, the cost of mitigation often outweighs the benefit, making transfer more efficient.

200
MCQhard

An organization is decommissioning a data center. Which of the following is the most secure method for sanitizing hard drives that will be reused?

A.Physical destruction
B.Deleting all files
C.Overwriting with random data multiple times
D.Quick format
AnswerC

Overwriting the entire storage medium with random data multiple times is a highly effective and recognized method for data sanitization. This process ensures that residual magnetic or electrical traces of previous data are thoroughly obscured, making data recovery practically impossible even with advanced forensic techniques, thereby preparing the media for secure reuse.

Why this answer

Overwriting with random data multiple times (option C) is the most secure method for sanitizing hard drives that will be reused because it ensures that the original data is irrecoverable through any known forensic technique. Unlike physical destruction, which renders the drive unusable, or file deletion and quick format, which only remove file system pointers and leave data intact, multiple-pass overwriting (e.g., using the DoD 5220.22-M standard) writes patterns over every sector, including remapped sectors, making the original data unrecoverable even with advanced magnetic force microscopy.

Exam trap

The trap here is that candidates often choose 'Physical destruction' because it seems most secure, but they overlook the explicit requirement that the drives will be reused, making destruction invalid.

How to eliminate wrong answers

Option A is wrong because physical destruction (e.g., shredding or degaussing) permanently damages the drive, preventing reuse, which contradicts the requirement that the drives will be reused. Option B is wrong because deleting all files only removes directory entries and marks clusters as available; the actual data remains on the platters and can be easily recovered with file recovery tools. Option D is wrong because a quick format only rewrites the file system metadata (e.g., boot sector and FAT) and does not touch the data areas, leaving all user data intact and recoverable.

201
MCQmedium

A financial institution is implementing a data classification policy. Which role is responsible for assigning initial classification labels to data assets?

A.Data custodian
B.Data processor
C.Data owner
D.Data steward
AnswerC

The data owner holds ultimate accountability for the data's value, sensitivity, and the impact its compromise could have on the organization. They are responsible for defining the data classification levels and assigning the appropriate classification to specific datasets based on business criticality, regulatory requirements, and potential risk. This decision dictates the security controls and protection measures required throughout the data lifecycle.

Why this answer

The data owner is the senior manager or business stakeholder who has ultimate accountability for a data asset and is responsible for determining its classification level based on business impact and sensitivity. In the CISSP framework, the data owner defines the classification labels (e.g., Public, Internal, Confidential, Restricted) at the time of creation or acquisition, ensuring the asset is tagged according to the organization's data classification policy. This role does not handle the technical implementation but sets the initial classification, which then drives downstream controls like encryption and access control lists (ACLs).

Exam trap

ISC2 often tests the distinction between data owner and data custodian, trapping candidates who confuse the 'owner' as the person who physically handles the data (custodian) rather than the person who has accountability for classification and risk acceptance.

How to eliminate wrong answers

Option A is wrong because the data custodian is responsible for implementing and maintaining technical controls (e.g., encryption, backups, access enforcement) based on the classification assigned by the data owner, not for assigning the initial classification label. Option B is wrong because the data processor is a third-party entity that processes data on behalf of the data controller under a contract, typically in cloud or outsourcing scenarios, and has no authority to assign classification labels—that remains with the data owner. Option D is wrong because the data steward focuses on data quality, metadata management, and compliance with data governance rules, but does not have the authority to assign initial classification labels; that decision is reserved for the data owner who bears the risk.

202
MCQmedium

In an OAuth 2.0 authorization code flow with PKCE, what is the primary purpose of the code verifier and code challenge?

A.To encrypt the authorization code
B.To authenticate the end user
C.To ensure the client that requested the code is the same one redeeming it
D.To generate the ID token
AnswerC

This statement accurately describes the core purpose of PKCE. By requiring the client to generate a `code_verifier` and send a transformed `code_challenge` at the beginning of the flow, then present the original `code_verifier` when redeeming the authorization code, PKCE ensures that only the client that initiated the request can successfully exchange the code for tokens. This mechanism effectively prevents authorization code interception attacks, where a malicious application might steal the code and impersonate the legitimate client.

Why this answer

PKCE (Proof Key for Code Exchange) prevents authorization code interception attacks, especially for public clients like mobile apps.

203
MCQmedium

An organization is developing a business continuity plan (BCP) for its critical IT systems. Which of the following is the FIRST step in the BCP process?

A.Identify recovery strategies for critical systems.
B.Conduct a business impact analysis (BIA) to prioritize critical business functions.
C.Develop a testing schedule for the BCP.
D.Perform a risk assessment to identify potential threats.
AnswerB

Conducting a Business Impact Analysis (BIA) is the foundational and initial step in developing a robust Business Continuity Plan (BCP). The BIA systematically identifies and prioritizes an organization's critical business functions and processes, quantifying the potential financial and operational impacts of their disruption. This analysis establishes crucial metrics like Recovery Time Objectives (RTOs) and Recovery Point Objectives (RPOs), which are indispensable for guiding all subsequent BCP activities, including strategy selection and resource allocation.

Why this answer

The first step in the BCP process is to conduct a Business Impact Analysis (BIA) to identify and prioritize critical business functions and their dependencies. Without the BIA, you cannot determine which systems require recovery strategies or what recovery time objectives (RTOs) and recovery point objectives (RPOs) are needed. The BIA provides the quantitative and qualitative basis for all subsequent BCP decisions.

Exam trap

The trap here is that candidates often confuse the risk assessment (which identifies threats) with the BIA (which identifies business impact), but the BCP process explicitly begins with the BIA to prioritize business functions before addressing threats or recovery strategies.

How to eliminate wrong answers

Option A is wrong because identifying recovery strategies comes after the BIA has established which systems are critical and their specific recovery requirements. Option C is wrong because developing a testing schedule is a later phase, performed after the BCP has been written and approved. Option D is wrong because performing a risk assessment is a separate, earlier process that feeds into the overall risk management framework, but the BCP specifically starts with the BIA to understand business impact, not just threats.

204
MCQmedium

A company is implementing a data classification scheme. Which category should be assigned to internal memos about employee benefit plans that are not intended for public disclosure?

A.Private/Internal
B.Confidential/Restricted
C.Public
D.Sensitive
AnswerA

This classification is appropriate for data intended for internal company use, where unauthorized external disclosure would not cause severe damage but is still undesirable and could impact privacy or competitive advantage. Employee benefit plans are proprietary internal information that should be protected from public view, aligning perfectly with the 'Private/Internal' designation, which signifies information not meant for public consumption but also not carrying the highest level of sensitivity requiring 'Confidential' controls.

Why this answer

Commercial classification schemes typically use 'Private' for internal data that could cause harm if disclosed, such as employee benefit details.

205
MCQeasy

Which component of the AAA framework is responsible for determining what resources a user can access and what actions they can perform?

A.Auditing
B.Authentication
C.Accounting
D.Authorization
AnswerD

Authorization is the critical component of the AAA framework responsible for determining what actions an authenticated user or system is permitted to perform on a resource. After identity verification, authorization mechanisms consult policies and access control lists (ACLs) to decide "what you are allowed to do," granting or denying specific privileges based on the user's role, group membership, or other attributes. This directly addresses the question of defining permissions.

Why this answer

AAA stands for Authentication, Authorization, and Accounting. Authorization is the process of granting or denying access to resources based on policies.

206
MCQhard

A multinational company must comply with the EU General Data Protection Regulation (GDPR) for processing personal data of EU citizens. The company's data protection officer (DPO) has been appointed but reports to the Chief Marketing Officer (CMO). Which compliance issue is most critical?

A.The DPO should not hold any other role within the organization
B.The DPO must be a lawyer certified in data protection
C.The DPO must be located in the EU
D.The DPO must report directly to the board of directors or CEO
AnswerD

GDPR Article 38(3) explicitly mandates that the Data Protection Officer (DPO) must directly report to the highest management level of the controller or processor. This direct reporting line, typically to the board of directors or CEO, is fundamental to ensuring the DPO's independence and authority within the organization. It enables the DPO to perform their duties without undue influence and ensures their recommendations on data protection are given due consideration by strategic decision-makers.

Why this answer

Under the GDPR, the Data Protection Officer (DPO) must report directly to the highest level of management, typically the board of directors or CEO, to ensure independence and authority. Reporting to the Chief Marketing Officer (CMO) creates a conflict of interest because the CMO oversees marketing activities that often involve extensive personal data processing, compromising the DPO's ability to provide unbiased oversight. This structural subordination is the most critical compliance issue as it directly undermines the DPO's statutory role under Article 38(3) of the GDPR.

Exam trap

The trap here is that candidates often focus on the DPO's qualifications or location (options B and C) because those are commonly discussed in GDPR training, but the most critical issue is the DPO's independence and reporting line, which directly impacts their ability to enforce compliance without conflict of interest.

How to eliminate wrong answers

Option A is wrong because the GDPR does not prohibit the DPO from holding other roles; it only requires that those roles do not create a conflict of interest (Article 38(6)). Option B is wrong because the GDPR does not mandate that the DPO be a lawyer or hold any specific certification; it requires expertise in data protection law and practices (Article 37(5)). Option C is wrong because the GDPR does not require the DPO to be physically located in the EU; the DPO can be outside the EU as long as they are accessible and can effectively perform their duties (Article 37(2) and EDPB guidelines).

207
MCQeasy

Which of the following is an example of a Type 2 authentication factor?

A.Security question
B.Password
C.Smart card
D.Fingerprint
AnswerC

A smart card is a physical device (something you have).

Why this answer

A Type 2 factor is something you have, such as a smart card or OTP token.

208
MCQhard

A medium-sized financial services company recently deployed a new identity governance and administration (IGA) solution to manage user access across on-premises Active Directory and cloud-based SaaS applications. The IGA system uses a role-based access control (RBAC) model with hundreds of roles defined. The company has a policy that all access certifications must be completed quarterly. During the first quarterly certification, the access reviewers complain that they are overwhelmed by the number of entitlements they need to review, and many certifications are not completed on time. The security team also notices that some users have accumulated excessive privileges because role assignments were not properly reviewed. The company wants to streamline the certification process without sacrificing security. Which of the following is the BEST course of action?

A.Increase the certification frequency to monthly and assign more reviewers
B.Eliminate role-based access and assign permissions directly to users
C.Implement a risk-based certification approach that focuses on high-risk access and uses automated certification for low-risk access
D.Automate all certifications by using scripts that approve access if no violations are detected
AnswerC

Implementing a risk-based certification approach is the most effective strategy for managing extensive entitlement reviews by intelligently prioritizing human effort. High-risk access, such as privileged accounts or access to sensitive data, receives thorough manual scrutiny, ensuring critical security controls are meticulously maintained. Conversely, low-risk, routine access can be efficiently certified through automated processes, significantly reducing reviewer fatigue and operational costs while still meeting compliance requirements for regular access reviews and maintaining overall security.

Why this answer

A risk-based certification approach prioritizes high-risk entitlements for manual review while automating the certification of low-risk access, reducing reviewer fatigue and ensuring critical privileges are scrutinized. This aligns with the principle of 'defense in depth' and addresses the core issue of overwhelming certification volume without compromising security, as low-risk access can be certified based on predefined policies and automated workflows.

Exam trap

The trap here is that candidates may choose option D (automate all certifications) because it seems efficient, but they overlook the critical requirement for human oversight in high-risk access decisions, which is a core principle of identity governance and audit compliance.

How to eliminate wrong answers

Option A is wrong because increasing certification frequency to monthly would exacerbate reviewer overload and likely lead to even more incomplete certifications, as it increases the volume of reviews without addressing the root cause of excessive entitlements. Option B is wrong because eliminating role-based access and assigning permissions directly to users would abandon the RBAC model entirely, leading to a chaotic, unmanageable permission structure that violates the principle of least privilege and increases security risk. Option D is wrong because automating all certifications with scripts that approve access if no violations are detected removes human oversight entirely, which could allow inappropriate access to persist if violations are not detected by the scripts, undermining the certification process's purpose of ensuring proper access governance.

209
MCQeasy

A security analyst is tasked with identifying vulnerabilities in a web application that is still in development. The application code is not yet stable, and frequent changes are expected. Which testing approach would be most appropriate to identify vulnerabilities without hindering the development process?

A.Fuzz testing
B.Manual penetration testing
C.Static application security testing (SAST)
D.Dynamic application security testing (DAST)
AnswerC

Static Application Security Testing (SAST) analyzes an application's source code, bytecode, or binary code for security vulnerabilities without executing the program. This method allows for early detection of flaws during the development lifecycle, often integrated directly into the Continuous Integration/Continuous Delivery (CI/CD) pipeline. SAST tools can identify a wide range of vulnerabilities, including SQL injection, cross-site scripting, and buffer overflows, by examining code patterns and ensuring adherence to secure coding standards before deployment.

Why this answer

Static Application Security Testing (SAST) is the most appropriate approach because it analyzes source code, byte code, or binary code without executing the application, making it ideal for early-stage development where code is unstable and frequently changing. SAST can be integrated into the development pipeline (e.g., as a pre-commit hook or CI/CD step) to identify vulnerabilities like SQL injection, XSS, or buffer overflows without requiring a running application or hindering the iterative development process.

Exam trap

The trap here is that candidates often choose DAST (Option D) because they associate 'dynamic' with 'real-world testing,' but they overlook the critical constraint that the application is unstable and in development, making SAST the only viable option that does not require a running application.

How to eliminate wrong answers

Option A is wrong because fuzz testing is a dynamic testing technique that requires a running, stable application to inject malformed or unexpected inputs, which is not feasible when the code is unstable and frequently changing. Option B is wrong because manual penetration testing is a time-intensive, point-in-time assessment that relies on a functional, deployed application and would significantly hinder the development process due to the need for a stable environment and repeated retesting after each code change. Option D is wrong because Dynamic Application Security Testing (DAST) requires a fully running application to scan for vulnerabilities from the outside (e.g., via HTTP requests), and it cannot be effectively performed on an unstable, in-development application that may not even compile or run correctly.

210
Multi-Selectmedium

A company is planning to conduct a penetration test. Which THREE of the following should be included in the rules of engagement?

Select 3 answers
A.The tester's personal contact information
B.Emergency stop criteria
C.Definition of the scope (systems to be tested)
D.Written authorization from management
E.Specific vulnerabilities to be exploited
AnswersB, C, D

Emergency stop criteria are crucial elements within the Rules of Engagement, defining specific conditions under which the penetration test must be immediately halted. These criteria typically include scenarios such as causing a critical system outage, corrupting production data, triggering an organization-wide incident response, or exceeding predefined resource utilization thresholds. Establishing these clear boundaries ensures that the testing activities do not inflict unacceptable damage or operational disruption to the target environment.

Why this answer

Emergency stop criteria define the conditions under which the penetration test must be immediately halted, such as causing a production system outage or detecting unauthorized data access. This is a critical component of the rules of engagement (RoE) to ensure the test does not cause unacceptable business impact, aligning with the principle of minimizing risk during security assessments.

Exam trap

The trap here is that candidates often confuse the rules of engagement with the test plan or methodology, mistakenly including operational details like specific vulnerabilities or personal contact information, when the RoE is strictly about boundaries, authorization, and safety constraints.

211
MCQmedium

A security administrator is configuring a system that requires users to provide a password and a one-time code from a hardware token. Which authentication method is being implemented?

A.Biometric authentication
B.Step-up authentication
C.Single-factor authentication
D.Multi-factor authentication
AnswerD

Multi-factor authentication (MFA) is the correct choice because it precisely describes an authentication system that requires a user to present two or more independent authentication factors from different categories to verify their identity. By combining distinct types, such as 'something you know' (e.g., a password) and 'something you have' (e.g., a token or smart card), MFA significantly enhances security. This approach ensures that even if one factor is compromised, unauthorized access is prevented due to the requirement for a second, different factor.

Why this answer

Using two different factor types (password and hardware token) constitutes multi-factor authentication (MFA).

212
MCQmedium

A company is migrating its critical application to a cloud provider. Which disaster recovery strategy provides the shortest recovery time objective (RTO) and recovery point objective (RPO)?

A.Warm site
B.Cold site
C.Hot site
D.Reciprocal agreement
AnswerC

A hot site is a fully operational, mirrored facility that replicates the primary production environment with identical hardware, software, and up-to-date data, often synchronized in real-time. This comprehensive setup allows for immediate failover in the event of a disaster, ensuring minimal data loss and near-zero downtime. A hot site achieves the lowest Recovery Time Objective (RTO) and Recovery Point Objective (RPO), making it the optimal choice for critical applications requiring continuous availability and rapid business continuity.

Why this answer

A hot site is fully configured with hardware, software, and real-time data synchronization, minimizing RTO and RPO.

213
MCQhard

An attacker has obtained a Kerberos TGT and uses it to request service tickets for any resource in the domain. Which type of attack is this?

A.Replay attack
B.Pass-the-ticket attack
C.Golden ticket attack
D.Kerberos cracking
AnswerB

A Pass-the-Ticket attack leverages a legitimately obtained Kerberos Ticket Granting Ticket (TGT) or its associated session key, which an attacker extracts from memory on a compromised host or user session. With this stolen TGT, the attacker can then request new Service Tickets (STs) from the Key Distribution Center (KDC) for various services, effectively authenticating as the original user without needing their plaintext password. This grants the attacker access to resources the compromised user is authorized to use.

Why this answer

A golden ticket attack involves forging a TGT, but pass-the-ticket uses a legitimate TGT obtained illegally.

214
MCQhard

You are the chief information security officer (CISO) of a large healthcare organization that handles protected health information (PHI). The organization has recently been acquired by a larger conglomerate, and the new parent company mandates that all subsidiaries adopt a single, unified risk management framework based on NIST SP 800-39. Your current framework is ISO 27005-based and has been effective for years. During the transition, you discover that the parent company's framework requires quantitative risk analysis for all critical assets, while your team has been primarily using qualitative analysis due to lack of accurate financial data. Moreover, the parent company expects all risk assessments to be completed within 30 days, a timeframe your team considers unrealistic given the number of assets. Several key stakeholders are concerned about the additional resource burden and potential disruption to operations. You need to propose a course of action that balances compliance with the parent company's mandate while maintaining operational effectiveness and minimizing risk to patient data.

A.Conduct a gap analysis between ISO 27005 and NIST SP 800-39, then develop a phased transition plan with a longer timeline, presenting it to the parent company's board for approval.
B.Continue using ISO 27005 and argue that it is equally valid, citing the principle of risk management flexibility and the disruption that a transition would cause.
C.Hire external consultants to perform the quantitative assessments, allowing the internal team to focus on existing operations, and accept the cost as a business necessity.
D.Immediately adopt the NIST framework and begin quantitative assessments, using industry-standard cost estimates to expedite the process within 30 days.
AnswerA

A gap analysis between ISO 27005 and NIST SP 800-39 is a critical first step to identify specific differences in risk management methodologies, control sets, and reporting requirements. Developing a phased transition plan allows for systematic integration, training, and resource allocation, minimizing operational disruption while ensuring thorough adoption. Presenting this strategic roadmap to the parent company's board secures essential executive buy-in, funding, and alignment with overall corporate governance and risk appetite.

Why this answer

The best course of action because it respects both the parent company's mandate and the organization's operational reality. A gap analysis between ISO 27005 and NIST SP 800-39 identifies specific differences and allows a phased transition plan with a longer timeline, which can be presented to the parent company for approval. This approach balances compliance with operational effectiveness, addresses stakeholder concerns about resource burden and disruption, and minimizes risk to patient data.

Option B is non-compliant and may lead to conflict with the parent company. Option C provides a short-term fix but does not address the long-term requirement to adopt the unified framework. Option D is too aggressive and unrealistic, risking operational disruption and potential compromise of patient data.

215
MCQeasy

In a public key infrastructure (PKI), which component is responsible for issuing and revoking digital certificates?

A.Registration Authority (RA)
B.Certificate Authority (CA)
C.Certificate Revocation List (CRL)
D.Validation Authority (VA)
AnswerB

Correct. CA issues and revokes certificates in a PKI.

Why this answer

The Certificate Authority (CA) is the trusted entity in a PKI that issues digital certificates by signing them with its private key, and it also revokes certificates by publishing Certificate Revocation Lists (CRLs) or using the Online Certificate Status Protocol (OCSP). The CA is the authoritative source for certificate lifecycle management, including issuance, renewal, and revocation.

Exam trap

The trap here is confusing the Registration Authority (RA) with the Certificate Authority (CA), as the RA performs identity verification but candidates often mistakenly think it also issues certificates.

How to eliminate wrong answers

Option A is wrong because the Registration Authority (RA) is only responsible for verifying the identity of certificate requestors and forwarding requests to the CA; it does not issue or revoke certificates itself. Option C is wrong because the Certificate Revocation List (CRL) is a data structure published by the CA that lists revoked certificates, not an entity that performs issuance or revocation actions. Option D is wrong because the Validation Authority (VA) is an optional component that validates certificate status (e.g., via OCSP responder) but does not issue or revoke certificates.

216
MCQeasy

A company must comply with a regulation requiring a formal, independent assessment of its security controls against a standard. Which type of assessment is MOST appropriate?

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

A security audit is a formal, independent, and systematic examination of an organization's security controls, processes, and policies against a specific set of criteria, such as regulatory requirements or industry standards. It involves evidence collection, analysis, and reporting to determine the extent of compliance and the effectiveness of controls. This structured, evidence-based approach, conducted by independent parties, is precisely what a regulation requiring a formal comparison of controls to a standard demands.

Why this answer

A security audit is the most appropriate assessment because it is a formal, independent evaluation of an organization's security controls against a predefined standard (e.g., ISO 27001, NIST SP 800-53). Unlike other assessments, an audit is conducted by an independent third party or internal audit function, providing objective evidence of compliance with regulatory requirements.

Exam trap

The trap here is that candidates confuse a security audit with a penetration test or vulnerability assessment, mistakenly thinking that technical exploitation is required for compliance, when the regulation specifically demands an independent evaluation against a standard, not a technical attack simulation.

How to eliminate wrong answers

Option A is wrong because a penetration test is an authorized simulated attack to exploit vulnerabilities, not a formal assessment of controls against a standard; it focuses on identifying exploitable weaknesses rather than compliance. Option C is wrong because a security review is typically an informal, internal evaluation (e.g., peer review or design review) that lacks the independence and formal structure required for regulatory compliance. Option D is wrong because a vulnerability assessment is an automated or manual scan to identify and list vulnerabilities (e.g., missing patches, misconfigurations), but it does not evaluate controls against a specific standard or provide an independent compliance opinion.

217
MCQmedium

A security team is reviewing a web application that allows users to search for products. The application uses a SQL database and constructs queries by concatenating user input directly into the SQL statement. Which of the following is the most effective mitigation against SQL injection attacks?

A.Using parameterized queries with prepared statements
B.Escaping all user input before concatenation
C.Input validation using a blacklist of known malicious patterns
D.Implementing a Web Application Firewall (WAF)
AnswerA

Parameterized queries with prepared statements are the most effective defense against SQL injection because they fundamentally separate the SQL code structure from user-provided data. The database engine treats all input as literal values, not executable commands, preventing malicious input from altering the query's intent. This architectural separation ensures that special characters in user input are never interpreted as SQL syntax, thereby eliminating the injection vector at its root.

Why this answer

Parameterized queries with prepared statements separate SQL logic from user input by sending the query structure to the database first, then binding input values as data parameters. This prevents the database from interpreting user input as executable SQL code, even if the input contains malicious characters. It is the only defense that completely eliminates the injection vector at the database interaction layer.

Exam trap

The trap here is that candidates often choose input validation or escaping because they seem proactive, but the CISSP exam emphasizes that parameterized queries are the only definitive defense against SQL injection at the code level, as they enforce separation of code and data by design.

How to eliminate wrong answers

Option B is wrong because escaping user input is error-prone and context-dependent; an attacker can bypass escaping if the escape function is not perfectly aligned with the database's character set or query context (e.g., using alternate encodings or second-order injection). Option C is wrong because blacklist-based input validation can be circumvented by obfuscation techniques (e.g., using hex, Unicode, or case variations) and fails to block novel or unknown attack patterns. Option D is wrong because a WAF operates at the network or application layer and can only detect known attack signatures; it cannot prevent injection if the underlying code still concatenates input, and it can be bypassed by encoding or timing attacks.

218
MCQmedium

An organization is required to declassify a document that was previously classified as 'Secret' under government guidelines. What process must be followed before the document can be released to the public?

A.The data owner must reclassify it as 'Unclassified' without further action
B.The document can be released immediately after the classification period expires
C.A declassification review by authorized personnel must be conducted
D.The document should be shredded and a new version created without classified markings
AnswerC

This option is correct because declassification is a formal, systematic process that mandates a thorough review by personnel specifically authorized for this task. This review ensures that the information no longer meets the criteria for classification and that its release will not compromise national security, privacy, or other protected interests. It's a critical safeguard against inadvertent disclosure of still-sensitive data and ensures compliance with declassification policies.

Why this answer

Declassification is a formal review process to determine if the information still requires protection. It must be performed by authorized personnel following established procedures.

219
MCQhard

An organization wants to ensure that data is protected throughout its lifecycle. Which step in the data lifecycle is most critical for enforcing data retention policies?

A.Archive
B.Use
C.Create/Collect
D.Share
AnswerA

Archiving is the process of moving data that is no longer actively used but must be retained for compliance, legal, or historical purposes to a separate, often less expensive, long-term storage system. This phase directly implements data retention policies by ensuring data is stored securely and immutably for its mandated lifecycle, distinct from active operational storage.

Why this answer

The 'archive' phase is when data is moved to long-term storage based on retention requirements, and the retention policy dictates how long it must be kept.

220
MCQhard

During an internal audit, an organization discovers that a critical application has not been patched for six months. The application is business-critical and cannot be taken offline during business hours. Which of the following is the best course of action?

A.Implement compensating controls and schedule patching at the next available maintenance window
B.Accept the risk and continue operations
C.Apply the patch immediately during off-hours even if it risks downtime
D.Disconnect the application until it is patched
AnswerA

Compensating controls mitigate risk until the patch can be applied safely during a planned outage.

Why this answer

Compensating controls (e.g., network segmentation, WAF rules, or host-based IPS) reduce the immediate risk while the critical application remains online. Scheduling patching for the next maintenance window aligns with change management and ensures the patch is tested and applied without disrupting business operations. This balances security needs with operational continuity, a core principle of risk management.

Exam trap

The trap here is that candidates may choose immediate patching (Option C) thinking it is the most secure action, but the CISSP exam emphasizes balancing security with business continuity and following proper change management procedures.

How to eliminate wrong answers

Option B is wrong because accepting risk without any mitigating action ignores the known vulnerability exposure for six months, which violates due care and could lead to exploitation. Option C is wrong because applying the patch immediately during off-hours without prior testing or change approval could introduce instability or downtime, which is unacceptable for a business-critical application. Option D is wrong because disconnecting the application halts business operations entirely, which is disproportionate when less disruptive compensating controls can be implemented first.

221
MCQmedium

A company is conducting a risk assessment and needs to prioritize risks based on both likelihood and impact. The risk management team decides to use a quantitative approach. Which of the following is a key advantage of using quantitative risk analysis over qualitative risk analysis?

A.It provides monetary values for risks, facilitating cost-benefit analysis.
B.It relies on expert opinions and does not require historical data.
C.It is easier to communicate to non-technical stakeholders.
D.It requires less data and is faster to perform.
AnswerA

Quantitative risk analysis directly translates potential risks into financial terms, such as Annualized Loss Expectancy (ALE), by calculating the monetary impact of a single loss event (SLE) and its annual frequency (ARO). This financial quantification is crucial because it allows organizations to perform a rigorous cost-benefit analysis, comparing the projected monetary losses from a risk against the investment required for mitigation controls. Consequently, it facilitates informed decision-making, ensuring that security expenditures are justified and prioritized based on their financial return on investment.

Why this answer

Quantitative risk analysis assigns monetary values to assets, threats, and vulnerabilities, enabling precise cost-benefit calculations for risk mitigation options. This allows organizations to compare the cost of controls directly against the expected loss, a key advantage over qualitative methods that rely on subjective rankings.

Exam trap

The trap here is that candidates often confuse the ease of communication (qualitative) with the numerical rigor (quantitative), or mistakenly think quantitative analysis is faster because it uses numbers, when in fact it demands more data and time.

How to eliminate wrong answers

Option B is wrong because quantitative analysis relies on numerical data and historical loss records, not expert opinions; qualitative analysis is the approach that depends on expert judgment. Option C is wrong because quantitative results (e.g., ALE, SLE) are often harder for non-technical stakeholders to grasp than the simple high/medium/low ratings of qualitative analysis. Option D is wrong because quantitative analysis requires extensive data collection and computation, making it slower and more resource-intensive than qualitative analysis.

222
MCQhard

A security manager is evaluating risk responses for a high-likelihood, low-impact risk. The cost of mitigation exceeds the potential loss. Which risk response strategy is most appropriate?

A.Avoid
B.Mitigate
C.Transfer
D.Accept
AnswerD

Accepting the risk means consciously deciding to take no action to reduce the likelihood or impact of a risk, and instead bearing the potential consequences if the risk materializes. This strategy is economically sound and appropriate when the cost of implementing any other risk response, such as mitigation or transfer, is greater than the potential financial loss that would be incurred if the risk event occurs. For high-likelihood, low-impact risks where response costs exceed potential losses, acceptance is the most pragmatic and cost-effective approach.

Why this answer

When the cost of mitigation exceeds the potential loss, accepting the risk is the most cost-effective response.

223
MCQmedium

An organization is implementing a BCP. After completing the BIA, which of the following is the next logical step in the planning process?

A.Develop recovery strategies
B.Test the plan
C.Conduct a risk assessment
D.Train personnel
AnswerA

Developing recovery strategies is the direct and logical next step after completing a Business Impact Analysis (BIA). The BIA identifies critical business functions, their Recovery Time Objectives (RTOs), and Recovery Point Objectives (RPOs), essentially defining *what* needs to be recovered and *how quickly*. Based on these findings, the organization then determines the *how* by selecting and designing appropriate recovery strategies, such as hot sites, warm sites, or reciprocal agreements, to meet those defined objectives.

Why this answer

After the BIA identifies critical processes and recovery requirements, the next step is to develop strategies to meet those requirements, such as selecting recovery sites and technologies.

224
MCQmedium

An organization is developing a security governance framework to align with business objectives. Which group should have ultimate authority and responsibility for the cybersecurity program?

A.IT steering committee
B.Board of directors
C.Chief Information Security Officer (CISO)
D.Chief Executive Officer (CEO)
AnswerB

The Board of Directors holds the ultimate fiduciary responsibility for the organization's overall governance, risk management, and compliance, including cybersecurity. They are legally accountable to shareholders and stakeholders for ensuring that adequate controls and strategies are in place to protect assets and manage enterprise risks effectively. Establishing the security governance framework is a strategic imperative that falls squarely within their purview, setting the tone at the top and delegating authority appropriately.

Why this answer

The board of directors holds ultimate fiduciary duty for the organization, including oversight of risk management and cybersecurity. They approve the security governance framework and ensure it aligns with business objectives, as they are legally accountable for the entire enterprise. The CISO and CEO implement the program, but the board retains final authority.

Exam trap

CISSP often tests the distinction between operational responsibility (CISO, CEO) and ultimate governance authority (board of directors), tricking candidates into selecting the CISO as the answer because they are the most visible security leader.

How to eliminate wrong answers

Option A is wrong because the IT steering committee is an operational or tactical group that coordinates IT projects and priorities, not a governing body with ultimate fiduciary responsibility for cybersecurity risk. Option C is wrong because the CISO is the senior executive who designs and manages the cybersecurity program, but they report to the board or CEO and do not hold ultimate authority over the entire organization's risk posture. Option D is wrong because while the CEO is the top executive and accountable to the board, the board of directors has the ultimate legal and fiduciary authority to approve and oversee the cybersecurity governance framework.

225
MCQhard

During a security assessment, a penetration tester successfully performs an ARP spoofing attack, redirecting traffic through their machine. This attack exploits which protocol vulnerability?

A.Stateless nature of ARP with no authentication
B.Lack of encryption in ARP packets
C.Weakness in the IP address resolution algorithm
D.Use of broadcast frames for all requests
AnswerA

ARP's stateless design means it does not maintain session information or prior trust relationships between IP and MAC addresses. Consequently, it lacks any built-in authentication mechanism to verify the sender's legitimacy for ARP replies. This fundamental absence of authentication allows any host on the local network to send forged ARP replies, which are then accepted and cached by other devices without verification, leading directly to vulnerabilities like ARP spoofing.

Why this answer

ARP spoofing succeeds because ARP is a stateless protocol that does not authenticate or verify the legitimacy of ARP replies. Any host on a local network can send an unsolicited ARP reply (gratuitous ARP) to associate any IP address with any MAC address, allowing an attacker to redirect traffic without any validation mechanism.

Exam trap

CISSP candidates often confuse the stateless nature of ARP (no authentication) with the use of broadcast frames. While ARP uses broadcasts for requests, the vulnerability is that any host can send unsolicited replies (gratuitous ARP) without validation, not the broadcast mechanism itself.

How to eliminate wrong answers

Option B is wrong because ARP packets are not encrypted by design, but the lack of encryption is not the fundamental vulnerability exploited in spoofing; the core issue is the absence of authentication, not confidentiality. Option C is wrong because the IP address resolution algorithm itself is not weak; the vulnerability lies in the protocol's trust model, not in the algorithm used to map IP to MAC addresses. Option D is wrong because while ARP requests use broadcast frames, the attack exploits the acceptance of unsolicited replies, not the broadcast nature of requests; broadcast is a normal operational characteristic, not the security flaw.

Page 2

Page 3 of 10

Page 4

All pages