Courseiva

Certified Information Security Manager CISM (CISM) — Questions 226300

871 questions total · 12pages · All types, answers revealed

Page 3

Page 4 of 12

Page 5
226
MCQmedium

During a P1 incident, the incident response team identifies that the root cause is a misconfigured firewall. According to best practices, which of the following should be the PRIMARY focus of the root cause analysis?

A.Patching the firewall immediately
B.Conducting a lessons learned meeting immediately
C.Determining why the firewall was misconfigured and why the change management process failed
D.Restoring the firewall from backup
AnswerC

This addresses the underlying process and management failures.

Why this answer

Root cause analysis should identify not only the technical cause but also the process and management failures that allowed the misconfiguration to occur.

227
MCQhard

During a cyber incident, the organization's legal counsel advises that certain information about the breach should not be shared with external partners due to ongoing law enforcement investigation. The incident response team must balance transparency with confidentiality. Which of the following is the BEST approach?

A.Seek partner input on what to share
B.Share all information with partners under NDA
C.Provide only non-sensitive overview to partners
D.Withhold all information until investigation ends
AnswerC

Providing a non-sensitive overview balances transparency with confidentiality, satisfying partner needs without compromising the investigation.

Why this answer

It allows the incident response team to maintain necessary transparency with external partners while respecting legal counsel's directive to withhold sensitive details due to an ongoing law enforcement investigation. Providing a non-sensitive overview—such as the general nature of the incident, affected systems (without PII), and remediation timeline—fulfills partnership obligations without jeopardizing the investigation or violating chain-of-custody requirements for digital forensics.

Exam trap

The trap here is that candidates often choose Option B (share all under NDA) because they assume legal agreements override all other constraints, failing to recognize that law enforcement investigations and preservation orders take precedence over contractual confidentiality.

How to eliminate wrong answers

Option A is wrong because seeking partner input on what to share could inadvertently expose sensitive details or lead to pressure to disclose information that conflicts with legal hold or law enforcement non-disclosure orders. Option B is wrong because sharing all information under NDA still violates the legal counsel's directive; NDAs do not override law enforcement restrictions or the need to preserve evidence integrity (e.g., maintaining forensic image hashes and avoiding spoliation). Option D is wrong because withholding all information until the investigation ends can damage critical partner trust and operational coordination, especially if partners require timely threat indicators to defend their own environments.

228
MCQmedium

You are the information security manager for a mid-sized e-commerce company. The company operates a web application that handles credit card transactions and stores customer data in a backend database. The incident response team has just been alerted to a potential data breach: an intrusion detection system (IDS) flagged a SQL injection attack pattern on the web application's login page. The attack originated from an external IP address (5.5.5.5) and appears to have been successful, as the IDS also detected a large outbound data transfer from the database server to another external IP (6.6.6.6) shortly after. The database server is not segmented from the web server. The company has a legal obligation to report breaches involving cardholder data within 72 hours. The incident response plan is being activated. The team includes a forensic analyst, a network engineer, and a legal advisor. The web application is currently running and serving customers. The CEO wants to minimize business disruption. Which of the following actions should the incident response team take FIRST?

A.Shut down the web application and database server immediately to stop the breach.
B.Isolate the database server from the network and block outbound traffic to the external IP.
C.Patch the SQL injection vulnerability in the web application and continue monitoring.
D.Take a full forensic image of all servers before taking any containment actions.
AnswerB

This stops data exfiltration while preserving the web application's availability.

Why this answer

The immediate priority is to contain the breach by isolating the compromised database server and blocking outbound traffic to the attacker's IP (6.6.6.6). This stops the exfiltration of cardholder data, preserves evidence on the isolated server, and minimizes business disruption by keeping the web application running. Shutting down servers (Option A) would cause unacceptable downtime, while patching (Option C) or imaging (Option D) without containment would allow continued data loss.

Exam trap

The trap here is that candidates confuse 'stopping the breach' with 'shutting everything down' (Option A), failing to recognize that containment actions like network isolation can halt data loss while preserving business continuity and evidence integrity.

How to eliminate wrong answers

Option A is wrong because shutting down both servers halts business operations, violating the CEO's directive to minimize disruption, and destroys volatile evidence (e.g., network connections, memory) that the forensic analyst needs. Option C is wrong because patching the SQL injection vulnerability does not stop the ongoing exfiltration to 6.6.6.6; the attacker may still have a backdoor or active connection, and data loss continues. Option D is wrong because taking forensic images before containment allows the attacker to continue exfiltrating data during the imaging process, violating the legal obligation to stop the breach within 72 hours.

229
MCQeasy

Which governance structure is characterized by a single security team that serves the entire organization?

A.Matrix
B.Hybrid
C.Centralized
D.Decentralized
AnswerC

Centralized uses a single security team for the whole organization.

Why this answer

A centralized governance model consolidates security responsibilities under one team, ensuring consistent policy enforcement and resource allocation.

230
MCQmedium

Which regulatory requirement mandates that organizations implement data protection measures for personal data of EU citizens?

A.SOX
B.GDPR
C.PCI DSS
D.HIPAA
AnswerB

Correct: General Data Protection Regulation.

Why this answer

GDPR is the primary regulation for personal data protection in the EU.

231
MCQeasy

An organization has just experienced a ransomware attack that encrypted files on several file servers. The incident response team has contained the incident. What is the next critical step?

A.Pay the ransom to recover data.
B.Wipe the affected servers and reimage them.
C.Notify law enforcement.
D.Restore files from clean backups.
AnswerD

Correct: Efficient recovery without paying ransom.

Why this answer

Restore files from clean backups, as this is the most reliable recovery method after containment. Paying the ransom is discouraged and does not guarantee data recovery; notifying law enforcement can be done later; wiping and reimaging may be unnecessary if clean backups are available.

232
MCQmedium

An organization is developing a security scorecard for the CISO. Which of the following is a leading indicator that would be most useful for predicting future security incidents?

A.Mean time to respond (MTTR) to incidents
B.Number of security incidents in the past quarter
C.Total cost of security incidents
D.Percentage of systems compliant with patch SLAs
AnswerD

Patch compliance is a leading indicator of potential vulnerabilities.

Why this answer

Leading indicators, such as the percentage of systems with known vulnerabilities patched within the SLA, provide early warning of potential issues. Patch compliance is a proactive measure that reduces risk.

233
MCQmedium

During a simulated phishing exercise, several employees clicked a link and entered their credentials on a fake login page. The security team needs to determine the impact. Which of the following should be the NEXT step?

A.Reset the affected employees' passwords and enable multi-factor authentication
B.Implement a security awareness training program
C.Conduct a forensic analysis of the employees' workstations
D.Block the phishing domain at the web proxy
AnswerA

This mitigates the credential compromise.

Why this answer

When credentials are compromised in a phishing attack, the immediate priority is to contain the breach by invalidating the exposed credentials. Resetting the affected employees' passwords and enabling multi-factor authentication (MFA) prevents attackers from using the harvested credentials for unauthorized access, especially if the credentials are reused across other systems. This aligns with the Incident Response phase of containment before moving to eradication or recovery.

Exam trap

The trap here is that candidates may confuse the containment phase with the eradication phase, choosing to block the phishing domain (Option D) instead of immediately neutralizing the compromised credentials, which is the more urgent action to prevent further unauthorized access.

How to eliminate wrong answers

Option B is wrong because implementing a security awareness training program is a long-term preventive measure, not an immediate containment step during active incident response. Option C is wrong because conducting a forensic analysis of the employees' workstations is premature; the phishing link was a server-side credential harvester, not a client-side malware infection, so workstation forensics would not directly address the credential compromise. Option D is wrong because blocking the phishing domain at the web proxy is a reactive defense but does not remediate the already-compromised credentials; the attacker may still use the stolen passwords before the domain is blocked.

234
MCQeasy

An organization has recently experienced a data breach due to a misconfigured database. The root cause was a lack of proper change management. As part of the risk management process, what should the organization do NEXT after implementing corrective controls?

A.Perform a residual risk assessment
B.Purchase additional cyber insurance to cover future breaches
C.Conduct security awareness training for all employees
D.Update the information security policy to mandate stricter controls
AnswerA

After implementing controls, the organization must evaluate whether the residual risk meets the risk appetite.

Why this answer

After implementing corrective controls, the next step in the risk management process is to perform a residual risk assessment. This evaluates the remaining risk after controls are applied, ensuring that the organization's risk appetite is not exceeded. Without this assessment, the organization cannot confirm whether the implemented controls are sufficient or if additional measures are needed.

Exam trap

The trap here is that candidates often confuse the order of the risk management process, selecting a corrective action (like training or policy updates) instead of the required evaluation step (residual risk assessment) that validates control effectiveness before moving to other activities.

How to eliminate wrong answers

Option B is wrong because purchasing additional cyber insurance is a risk transfer strategy, not a next step after implementing controls; it does not address the root cause or validate control effectiveness. Option C is wrong because conducting security awareness training is a preventive control that should have been part of the corrective plan, but it is not the immediate next step after implementation; the organization must first assess residual risk to determine if training alone is adequate. Option D is wrong because updating the information security policy is a governance action that may follow the residual risk assessment, but it is not the immediate next step; policy changes should be informed by the residual risk findings.

235
Multi-Selectmedium

Which THREE elements are essential components of a third-party risk management (TPRM) program? (Select THREE)

Select 3 answers
A.Automated patching of vendor systems
B.Contractual security requirements
C.Shared SOC services
D.Vendor tiering based on data access and criticality
E.Onboarding risk assessment
AnswersB, D, E

Legal enforceability ensures compliance.

Why this answer

Contractual security requirements (Option B) are essential because they legally bind the vendor to specific security controls, data protection obligations, and compliance standards. Without these enforceable clauses in the contract, the organization has no formal recourse if the vendor suffers a breach or fails to meet security expectations. This is a foundational element of any third-party risk management program, as it sets the baseline for acceptable risk transfer and due care.

Exam trap

The trap here is that candidates often confuse operational security controls (like patching or shared SOC) with the governance and risk management components that define a TPRM program, leading them to select options that describe how an organization secures its own environment rather than how it manages vendor risk.

236
MCQhard

A multinational corporation with a decentralized information security program has recently experienced a data breach involving customer PII. The breach originated from a regional office that had not implemented the global security baseline due to local IT staff claiming 'unique operational requirements.' The CISO has tasked the security manager with revising the program to prevent recurrence. The organization has 12 regional offices, each with its own IT leadership, and a central security team. The budget is tight, and there is resistance to centralized control. Which of the following is the BEST course of action for the security manager?

A.Increase the frequency of security audits for all regional offices
B.Provide additional training to regional IT staff on the importance of security baselines
C.Allow each regional office to maintain its own security program as long as it meets minimum standards
D.Establish a mandatory global security baseline with a formal exception process requiring CISO approval for any deviation
AnswerD

This provides enforceability and flexibility, ensuring deviations are formally risk-assessed and approved.

Why this answer

Establishing a mandatory global security baseline with a formal exception process ensures consistency while allowing for justified deviations that are formally approved by the CISO, addressing the root cause of non-compliance. Option A is wrong because increasing audits may detect issues but does not enforce compliance without binding standards. Option B is wrong because training alone does not ensure implementation when local IT can claim unique requirements.

Option C is wrong because allowing each office to maintain its own program perpetuates fragmentation and does not enforce a consistent baseline.

237
Multi-Selectmedium

Which TWO actions are appropriate during the containment phase of an incident involving a malware outbreak on multiple workstations?

Select 2 answers
A.Contact all users to warn them about the malware
B.Reimage all affected workstations immediately
C.Isolate infected workstations from the network
D.Notify customers about potential data breach
E.Block known malicious domains and IPs at the firewall
AnswersC, E

Isolation stops lateral movement.

Why this answer

Isolating infected workstations from the network is a primary containment action that prevents the malware from spreading laterally to other systems, limiting the scope of the incident. This is typically achieved by disconnecting network cables, disabling switch ports, or using network access control (NAC) to quarantine the affected hosts, which stops further propagation without destroying forensic evidence.

Exam trap

The trap here is that candidates often confuse containment with eradication or communication, mistakenly selecting 'reimage all affected workstations immediately' as a containment step, when in fact reimaging is an eradication action that should occur after containment and evidence collection.

238
MCQeasy

An organization's incident response plan has not been updated in two years. Which of the following is the MOST likely consequence?

A.The plan will comply with new regulations automatically.
B.The plan will be more effective due to maturity.
C.The plan will be followed exactly as written.
D.The plan may not address current threats and technologies.
AnswerD

Correct. Over two years, the threat landscape and technologies evolve, so the plan may not address current threats like ransomware or cloud-native architectures, increasing response risk.

Why this answer

An incident response plan that has not been updated in two years is unlikely to account for recent changes in the threat landscape, such as new attack vectors (e.g., ransomware-as-a-service, zero-day exploits) or shifts in technology stack (e.g., cloud-native architectures, IoT devices). Without periodic review, the plan may lack updated playbooks for current malware families, fail to reference new detection tools, or omit revised containment procedures for modern network segmentation. This gap directly increases the risk of ineffective response during an actual incident.

Exam trap

The trap here is that candidates may assume a plan's maturity or compliance improves with age, but CISM emphasizes that incident response plans must be living documents updated at least annually to remain effective against evolving threats and technologies.

How to eliminate wrong answers

Option A is wrong because regulations do not automatically update a static plan; compliance requires active monitoring and revision to address new legal requirements (e.g., GDPR, CCPA amendments). Option B is wrong because a plan's effectiveness degrades over time without updates, as maturity in incident response comes from iterative testing and refinement, not from simply aging. Option C is wrong because an outdated plan is less likely to be followed exactly; teams may deviate due to missing steps for current technologies or because the plan references obsolete systems or contacts.

239
Multi-Selecthard

Which TWO of the following are characteristics of a security champions program that contribute to its effectiveness?

Select 2 answers
A.Champions report directly to the CISO
B.Champions are rotated every six months
C.Champions act as liaisons between security and their teams
D.Champions have authority to enforce security policies
E.Champions are volunteers from development teams with additional security training
AnswersC, E

Liaison role facilitates communication and adoption.

Why this answer

Security champions are embedded in teams and receive specialized training, enabling them to advocate security practices.

240
MCQeasy

Which security control framework is organized into Implementation Groups (IG1, IG2, IG3) based on organizational risk profile and resources?

A.NIST SP 800-53
B.COBIT 2019
C.ISO 27001 Annex A
D.CIS Controls v8
AnswerD

CIS Controls v8 defines Implementation Groups IG1, IG2, and IG3 to guide prioritization.

Why this answer

CIS Controls v8 uses Implementation Groups to help organizations prioritize controls based on their maturity and risk.

241
MCQeasy

Which of the following is the PRIMARY reason for aligning the information security program with business objectives?

A.To reduce the cost of security operations
B.To comply with regulatory requirements
C.To ensure security initiatives receive adequate funding
D.To demonstrate the value of security to the business and gain executive support
AnswerD

Demonstrating value and gaining support is essential for long-term sustainability.

Why this answer

Aligning security with business objectives ensures that security investments support business goals and demonstrate value to stakeholders.

242
MCQhard

An organization has implemented a host-based intrusion prevention system (HIPS) on all endpoints. An internal audit reveals that many incidents go undetected because users often disable HIPS when it interferes with applications. Which of the following is the MOST effective control to address this issue?

A.Disable HIPS and rely solely on network-based intrusion detection.
B.Increase the sensitivity of HIPS signatures to detect more threats.
C.Remove the ability for users to disable HIPS.
D.Implement application whitelisting to allow approved applications while HIPS monitors.
AnswerD

This is correct because application whitelisting allows approved applications to run without being blocked, reducing false positives and the need for users to disable HIPS.

Why this answer

Application whitelisting addresses the root cause: users disable HIPS due to false positives or performance issues with legitimate applications. By allowing only approved applications to run, HIPS can monitor without interference, reducing the need for users to disable it. This control maintains endpoint security while ensuring business-critical applications operate smoothly.

Exam trap

The trap here is that candidates may choose to remove user privileges (Option C) without realizing that the core issue is application compatibility, not user intent; the most effective control must address the conflict, not just enforce compliance.

How to eliminate wrong answers

Option A is wrong because disabling HIPS removes host-based detection entirely, increasing reliance on network-based IDS which cannot inspect encrypted traffic or detect host-level anomalies. Option B is wrong because increasing signature sensitivity would likely increase false positives, exacerbating the problem of users disabling HIPS. Option C is wrong because removing the ability to disable HIPS does not address the underlying application conflicts; users may find workarounds or suffer productivity loss, leading to shadow IT or system instability.

243
Multi-Selecteasy

A security architect is designing a defense-in-depth strategy for a financial institution. Which TWO of the following are essential components of a defense-in-depth approach?

Select 2 answers
A.A single, strong firewall at the network perimeter.
B.A single sign-on (SSO) solution for all applications.
C.Network segmentation to isolate critical systems.
D.Annual penetration testing as the primary security control.
E.Endpoint detection and response (EDR) on all workstations and servers.
AnswersC, E

Limits the impact of a breach.

Why this answer

Defense-in-depth uses multiple layers of security controls. Network segmentation limits lateral movement, and endpoint detection provides visibility at the host level.

244
MCQeasy

A hospital chain has separate security teams for each facility. There is no central coordination, leading to duplicate efforts and inconsistent patient data protection. The system's CISO wants to improve governance with minimal disruption. What should he do?

A.Merge all teams into one central unit
B.Implement a top-down mandate for all policies
C.Create a governance committee with representatives from each facility
D.Outsource security to a third party
AnswerC

Promotes coordination and minimal disruption.

Why this answer

A governance committee with representatives from each facility establishes a federated governance model that aligns security practices across the hospital chain without restructuring teams. This approach enables consistent policy development, shared oversight, and coordination of patient data protection efforts while minimizing operational disruption, as each facility retains its existing team structure. It directly addresses the lack of central coordination and duplicate efforts by creating a collaborative decision-making body, which is a core principle of information security governance.

Exam trap

The trap here is that candidates often assume centralization (Option A) is the only way to achieve consistency, but the CISM exam emphasizes governance structures that balance coordination with minimal disruption, making a committee-based approach the correct choice over a full reorganization.

How to eliminate wrong answers

Option A is wrong because merging all teams into one central unit would cause significant operational disruption, resistance from facility-level staff, and potential loss of local context for patient data protection, which contradicts the goal of minimal disruption. Option B is wrong because implementing a top-down mandate for all policies ignores the need for buy-in from facility-level teams and may lead to non-compliance or ineffective enforcement due to lack of local adaptation, failing to improve governance sustainably. Option D is wrong because outsourcing security to a third party does not inherently improve governance; it shifts responsibility but still requires central coordination and oversight, and it introduces risks related to vendor management, data privacy, and loss of institutional knowledge.

245
Multi-Selectmedium

Which TWO of the following are common approaches to information security risk assessment?

Select 2 answers
A.Qualitative
B.Quantitative
C.Penetration testing
D.Vulnerability assessment
E.Business impact analysis
AnswersA, B

Uses descriptive scales.

Why this answer

Qualitative risk assessment uses subjective ratings (e.g., high, medium, low) based on expert judgment to evaluate the likelihood and impact of risks. It is a common approach because it is quick to perform and does not require precise numerical data, making it suitable for initial risk prioritization in information security management.

Exam trap

The trap here is that candidates confuse risk assessment approaches (qualitative/quantitative) with risk assessment activities (like penetration testing or vulnerability assessment), which are tools used within the assessment process but not the overarching methodology itself.

246
Multi-Selecteasy

A security audit has identified several governance weaknesses. Which TWO of the following are most likely to indicate a lack of effective information security governance? (Choose two.)

Select 2 answers
A.Risk assessments are not performed on a regular basis.
B.No formal security steering committee exists.
C.The information security policy is not available on the intranet.
D.Employees have not completed annual security awareness training.
E.Antivirus software is not updated on all endpoints.
AnswersA, B

Regular risk assessments are fundamental to governance to ensure risk is managed.

Why this answer

A is correct because regular risk assessments are a foundational requirement of information security governance, as they ensure that security controls remain aligned with evolving threats and business objectives. Without periodic risk assessments, the organization cannot demonstrate due diligence or maintain an accurate risk profile, which is a direct indicator of governance failure.

Exam trap

ISACA often tests the distinction between governance (strategic oversight, risk management, committee structures) and operational controls (training, patching, policy distribution), leading candidates to mistake operational deficiencies for governance weaknesses.

247
MCQhard

A risk manager is aggregating risks across the enterprise and finds that multiple individual risks, each with low impact and low probability, could combine to create a significant risk. What is the best approach to address this?

A.Ignore the individual risks as they are low priority
B.Use a risk aggregation model to assess cumulative impact and consider enterprise-level controls
C.Accept the risk because the probability of all occurring simultaneously is negligible
D.Treat each individual risk separately with minimal controls
AnswerB

Aggregation provides a holistic view and appropriate mitigation.

Why this answer

Risk aggregation models are specifically designed to quantify the cumulative impact of multiple low-level risks that, when combined, exceed the enterprise's risk appetite. This approach aligns with the CISM domain of Information Security Risk Management, where enterprise-level controls (e.g., centralized monitoring, compensating controls) are necessary to address systemic risk that individual risk treatments cannot mitigate. The key insight is that the combined probability of correlated or cascading events may be higher than the product of individual probabilities, especially when risks share common root causes.

Exam trap

The trap here is that candidates mistakenly apply the 'low probability, low impact' rule from individual risk assessment and ignore the need for aggregation, failing to recognize that the sum of many small risks can exceed the enterprise risk tolerance.

How to eliminate wrong answers

Option A is wrong because ignoring low-impact, low-probability risks violates the principle of risk aggregation; such risks can collectively create a significant exposure, especially if they share a common vulnerability or threat vector. Option C is wrong because accepting risk based on the assumption that the probability of all occurring simultaneously is negligible ignores the possibility of correlated events, where one risk triggers another, or where a single threat exploits multiple vulnerabilities at once. Option D is wrong because treating each individual risk separately with minimal controls fails to address the cumulative effect and may leave the enterprise exposed to a cascading failure that no single control can prevent.

248
MCQmedium

A security manager is developing metrics for the executive dashboard. Which combination of metrics provides a balanced view of security program performance?

A.Phishing click rate and mean time to detect (MTTD)
B.Budget spent and number of security tools deployed
C.Patch compliance percentage and number of phishing simulation clicks
D.Number of security incidents and mean time to respond (MTTR)
AnswerA

Phishing click rate is a leading indicator; MTTD is a lagging indicator, providing balance.

Why this answer

A balanced dashboard should include both leading and lagging indicators to show current effectiveness and past outcomes.

249
Multi-Selectmedium

An organization is designing a vendor tiering process for its third-party risk management program. Which TWO factors are MOST appropriate for determining a vendor's risk tier?

Select 2 answers
A.Type and sensitivity of data the vendor accesses
B.Vendor's geographic location
C.Number of employees at the vendor
D.Vendor's annual revenue
E.Criticality of the vendor's service to business operations
AnswersA, E

High sensitivity data increases risk.

Why this answer

Data access and service criticality are primary factors for tiering vendors.

250
MCQhard

A financial institution is restructuring its information security governance to comply with a new regulatory requirement that mandates a formal risk appetite statement. The board has conflicting views on the level of risk to accept. Which of the following should the information security manager do to facilitate the definition of risk appetite?

A.Recommend adopting the risk appetite levels used by a peer financial institution.
B.Facilitate a workshop with business leaders to map risk tolerance to strategic goals.
C.Draft a risk appetite statement and ask the CISO to approve it on behalf of the board.
D.Propose a quantitative risk appetite based on the organization's technology risk metrics.
AnswerB

This aligns risk appetite with business strategy and fosters board consensus.

Why this answer

Risk appetite must be aligned with the organization's strategic objectives and business goals, not dictated by external benchmarks or technology metrics alone. Facilitating a workshop with business leaders ensures that risk tolerance is mapped to strategic goals, which is a governance requirement under frameworks like COBIT and ISO 31000. This collaborative approach directly addresses the board's conflicting views by enabling informed, consensus-driven decision-making.

Exam trap

The trap here is that candidates often choose a technical or quantitative approach (Option D) or a shortcut (Option C), failing to recognize that risk appetite definition is a governance process requiring board-level strategic alignment, not a technical or delegated decision.

How to eliminate wrong answers

Option A is wrong because blindly adopting a peer institution's risk appetite levels ignores the unique risk profile, regulatory environment, and strategic objectives of the organization, which violates the principle of risk ownership and tailored governance. Option C is wrong because drafting a risk appetite statement and having the CISO approve it bypasses the board's fiduciary responsibility to define and approve risk appetite, undermining the governance hierarchy and regulatory compliance. Option D is wrong because proposing a quantitative risk appetite based solely on technology risk metrics neglects qualitative factors, business context, and strategic alignment, which are essential for a holistic risk appetite statement.

251
MCQmedium

During a risk assessment, an organization identifies that its legacy payment system has a high likelihood of exploitation due to unpatched vulnerabilities. The system is critical for daily operations. Which risk treatment option should the organization PRIMARILY consider?

A.Implement compensating controls to reduce the risk
B.Accept the risk as a cost of doing business
C.Avoid the risk by decommissioning the system
D.Purchase cyber insurance to transfer the risk
AnswerA

Compensating controls like network segmentation and enhanced monitoring can reduce risk while keeping the system operational.

Why this answer

Implementing compensating controls, such as network segmentation, application-layer firewalls, or intrusion detection systems (IDS), directly reduces the residual risk of exploiting unpatched vulnerabilities in the legacy payment system without disrupting its critical daily operations. This aligns with the CISM principle that when a risk cannot be remediated (e.g., due to system criticality or vendor end-of-life), compensating controls are the primary treatment to bring risk within the organization's appetite.

Exam trap

The trap here is that candidates often confuse risk transfer (insurance) with risk mitigation, failing to recognize that insurance does not address the technical vulnerability itself, and that acceptance is only appropriate after a cost-benefit analysis shows residual risk is within tolerance.

How to eliminate wrong answers

Option B is wrong because accepting the risk as a cost of doing business is inappropriate when the likelihood of exploitation is high and the system is critical; acceptance is typically reserved for low-likelihood, low-impact risks after other treatments have been considered. Option C is wrong because avoiding the risk by decommissioning the system would halt daily operations, which is not feasible for a system critical to business continuity; avoidance is only viable when the function can be replaced or eliminated without severe operational impact. Option D is wrong because purchasing cyber insurance transfers the financial impact but does not reduce the likelihood or technical exploitability of the unpatched vulnerabilities; insurance is a risk transfer mechanism, not a primary treatment for high-likelihood technical risks.

252
MCQeasy

Which of the following is the primary purpose of communicating risk assessment results to senior management?

A.To comply with regulatory requirements
B.To enable informed decision-making about risk acceptance
C.To assign blame for security failures
D.To justify the security budget
AnswerB

Senior management needs information to make decisions.

Why this answer

The primary purpose of communicating risk assessment results to senior management is to provide the necessary information for informed decision-making regarding risk acceptance, transfer, or mitigation. Senior management holds the authority to accept residual risk based on a clear understanding of the potential impact and likelihood, which is a core tenet of the CISM framework for information security risk management.

Exam trap

The trap here is that candidates often confuse the operational goal of 'justifying the budget' (Option D) with the strategic governance purpose of 'enabling risk acceptance decisions,' but CISM emphasizes that risk communication to senior management is fundamentally about obtaining informed risk acceptance, not securing funding.

How to eliminate wrong answers

Option A is wrong because while regulatory compliance (e.g., GDPR, SOX) may require documentation of risk assessments, it is not the primary purpose; compliance is a secondary benefit, not the core driver for communication to senior management. Option C is wrong because risk assessment communication is a forward-looking, constructive process aimed at managing risk, not a retrospective exercise to assign blame for security failures, which would undermine trust and collaboration. Option D is wrong because although risk assessment results can support budget justifications, the primary purpose is to enable risk acceptance decisions, not to serve as a budget advocacy tool; budget justification is a downstream outcome, not the immediate objective.

253
MCQhard

A multinational organization must comply with GDPR, CCPA, and PCI DSS. The security manager is designing a compliance monitoring program. Which approach is MOST efficient?

A.Create separate monitoring programs for each regulation
B.Outsource compliance to a third-party
C.Focus only on the strictest regulation
D.Map common controls to multiple regulations
AnswerD

Control mapping leverages overlaps for efficiency.

Why this answer

Mapping controls to multiple regulations reduces duplication and ensures comprehensive coverage across requirements.

254
MCQeasy

A security analyst detects an unusual spike in outbound traffic from a database server. Which of the following is the FIRST step in the incident response process?

A.Confirm the incident as a true positive
B.Isolate the server from the network
C.Identify the root cause of the traffic spike
D.Notify senior management
AnswerA

Confirming the alert as a true incident is the initial step to ensure that response efforts are justified.

Why this answer

In the NIST SP 800-61 incident response lifecycle, the first phase is preparation, followed by detection and analysis. The spike in outbound traffic is an indicator of compromise (IoC), but before any containment or eradication steps, the analyst must confirm that the alert is a true positive—not a false positive caused by a legitimate application update, backup replication, or monitoring tool. This validation typically involves correlating the traffic with known baselines, checking source/destination IPs against threat intelligence feeds, and reviewing logs to rule out benign causes.

Exam trap

The trap here is that candidates confuse the urgency of a potential breach with the structured incident response process, jumping to containment (isolate) or root cause analysis before verifying the alert is a true positive.

How to eliminate wrong answers

Option B is wrong because isolating the server from the network is a containment step that occurs after the incident is confirmed; premature isolation can disrupt legitimate services and destroy forensic evidence. Option C is wrong because identifying the root cause is part of the analysis and eradication phases, which follow confirmation and containment in the incident response process. Option D is wrong because notifying senior management is a communication step that typically happens after the incident is confirmed and its severity assessed, not as the very first action.

255
MCQmedium

Which of the following is the PRIMARY benefit of having a formal policy exception management process?

A.Eliminating all security risks
B.Reducing the number of security policies
C.Ensuring consistent treatment of exceptions with proper risk acceptance
D.Automating policy enforcement
AnswerC

Formal process ensures exceptions are managed consistently and risks are accepted by appropriate authority.

Why this answer

A formal process ensures that exceptions are documented, reviewed, and approved, reducing uncontrolled risk.

256
MCQeasy

Which control family in NIST SP 800-53 addresses the identification and authentication of users?

A.Personnel Security (PS)
B.Identification and Authentication (IA)
C.System and Communications Protection (SC)
D.Access Control (AC)
AnswerB

Correct. IA family addresses user identity and authentication.

Why this answer

The Identification and Authentication (IA) family in NIST SP 800-53 covers user identification, authentication, and credential management.

257
Multi-Selectmedium

A CISO is reporting to the board on the effectiveness of the security programme. Which TWO metrics are MOST appropriate for board-level reporting? (Select TWO)

Select 2 answers
A.Number of firewall rules changed
B.Mean time to detect (MTTD) and mean time to respond (MTTR)
C.Number of employees who completed security training
D.Security investment vs. loss avoidance
E.Patch compliance percentage
AnswersB, D

These reflect the effectiveness of detection and response capabilities.

Why this answer

Board-level metrics should focus on strategic impact, such as overall risk posture and financial implications.

258
MCQhard

Following a ransomware incident where data was encrypted and exfiltrated, the root cause analysis reveals that the initial access occurred through a phishing email that bypassed email filters due to a misconfiguration. The misconfiguration was not identified because the security team lacked a formal process to review firewall rule changes. Which of the following is the most appropriate management/governance failure to document in the lessons learned?

A.Employees should have been trained to recognize phishing emails.
B.The email filter vendor did not provide adequate support.
C.The security team did not have a change management process for security control configurations.
D.The incident response plan was not followed during the incident.
AnswerC

A lack of change management for security controls is a governance failure that allowed the misconfiguration to persist.

Why this answer

The technical cause is the phishing email, the process failure is the lack of review of email filter configurations, and the management/governance failure is the absence of a change management process for security controls.

259
MCQeasy

Which of the following is the PRIMARY purpose of an incident response plan?

A.To assign blame for security failures
B.To prevent all security incidents from occurring
C.To provide a systematic method for responding to incidents
D.To meet regulatory compliance requirements
AnswerC

The plan ensures consistent and effective response.

Why this answer

The primary purpose of an incident response plan is to establish a structured, systematic methodology for detecting, containing, eradicating, and recovering from security incidents. This ensures that the organization can minimize damage, reduce recovery time and costs, and preserve evidence for forensic analysis. Without a predefined plan, responses become ad hoc, increasing the likelihood of errors and extended downtime.

Exam trap

ISACA often tests the distinction between primary purpose and secondary benefits; candidates mistakenly choose regulatory compliance (Option D) because they confuse a common driver for implementing a plan with its fundamental operational objective.

How to eliminate wrong answers

Option A is wrong because assigning blame is counterproductive and not a goal of incident response; the focus is on learning and improving processes, not on fault-finding. Option B is wrong because incident response plans are designed to manage incidents that occur, not to prevent them; prevention is the domain of risk management and security controls. Option D is wrong because while regulatory compliance may be a benefit, it is not the primary purpose; the core objective is to effectively manage incidents to protect the organization's assets and operations.

260
MCQhard

An organization is engaging an external forensics firm to investigate a suspected data breach. Which of the following is the most important step to ensure that evidence remains admissible in legal proceedings?

A.Ensuring the forensics firm has signed a non-disclosure agreement
B.Negotiating a fixed price for the investigation
C.Requiring the forensics firm to report findings directly to the CEO
D.Issuing a legal hold and making forensic copies of affected systems before remediation
AnswerD

Legal hold preserves evidence, and forensic copies ensure the original evidence is untouched.

Why this answer

Preserving the chain of custody and ensuring forensic copies are made before remediation is critical for evidence admissibility. Legal hold ensures that relevant data is preserved.

261
MCQhard

A security program includes multiple metrics. Which metric best indicates the program's effectiveness in reducing overall risk?

A.Composite risk score based on threat, vulnerability, and control assessments.
B.Number of security incidents per quarter.
C.Mean time to detect (MTTD) incidents.
D.Percentage of employees who completed security training.
AnswerA

Directly reflects risk posture and reduction efforts.

Why this answer

A composite risk score aggregates threat, vulnerability, and control assessment data into a single metric that directly reflects the organization's residual risk posture. This metric is the most holistic indicator of program effectiveness because it quantifies how well security controls reduce the likelihood and impact of threats exploiting vulnerabilities, aligning with the CISM focus on risk management.

Exam trap

The trap here is that candidates confuse operational metrics (incident count, MTTD, training completion) with risk-based metrics, assuming any positive trend in a security metric automatically indicates reduced overall risk, when only a composite risk score directly measures risk reduction.

How to eliminate wrong answers

Option B is wrong because the number of security incidents per quarter is a lagging indicator that does not measure risk reduction; a low incident count could result from luck or under-detection, not effective controls. Option C is wrong because Mean Time to Detect (MTTD) measures detection speed, not overall risk reduction; an organization could detect incidents quickly but still have high residual risk due to weak preventive controls. Option D is wrong because the percentage of employees who completed security training measures awareness activity, not risk reduction; training completion does not guarantee behavior change or control effectiveness against specific threats.

262
Multi-Selectmedium

Which TWO of the following are essential components of an information security governance framework according to ISACA's COBIT?

Select 2 answers
A.Value delivery
B.Performance measurement
C.Strategic alignment
D.Incident response playbook
E.Firewall configuration
AnswersA, C

A core component ensuring security investments bring value.

Why this answer

Value delivery is a core component of ISACA's COBIT framework for information security governance, as it ensures that security investments directly support business objectives and provide measurable benefits. COBIT defines value delivery as the process of optimizing security-related costs while maximizing the return on investment through effective risk management and resource allocation. This aligns with the governance objective of balancing value creation with risk mitigation.

Exam trap

The trap here is that candidates often confuse operational security activities (like incident response or firewall configuration) with governance-level components, failing to recognize that COBIT's governance framework focuses on strategic alignment and value delivery rather than technical controls or performance measurement as a core pillar.

263
MCQeasy

Which document should be reviewed and updated at least annually?

A.Vendor contracts
B.Incident response plan
C.Network topology diagram
D.User manuals
AnswerB

Regulatory and best practice standards require annual review of IR plans.

Why this answer

The incident response plan must be reviewed and updated at least annually to ensure it remains effective against evolving threats and changes in the organization. Option B is correct. Vendor contracts (A), network topology diagrams (C), and user manuals (D) are typically reviewed on a different schedule or as needed, not necessarily annually.

264
Multi-Selectmedium

Which TWO of the following are key components of an information security governance framework? (Choose two.)

Select 2 answers
A.Security policy and standards.
B.Intrusion detection system (IDS) configuration.
C.Firewall rule set.
D.Payment Card Industry Data Security Standard (PCI DSS) compliance report.
E.Risk management process.
AnswersA, E

Foundational elements of governance frameworks.

Why this answer

Security policy and standards are foundational components of an information security governance framework because they establish the high-level direction, principles, and mandatory requirements that guide the organization's security posture. The risk management process is equally critical as it provides a structured methodology for identifying, assessing, and treating risks, ensuring that security decisions are aligned with business objectives and risk appetite. Together, they form the strategic and operational backbone of governance, enabling accountability and continuous improvement.

Exam trap

The trap here is that candidates confuse operational security controls (like IDS configuration or firewall rules) or compliance outputs (like PCI DSS reports) with the strategic governance components, which are policy, standards, and risk management processes.

265
MCQmedium

A large enterprise with a centralized Security Information and Event Management (SIEM) system is experiencing a high volume of false positive alerts. The security team is overwhelmed and has started to ignore many alerts. During a recent incident, a critical alert indicating lateral movement by an attacker was missed because it was buried among hundreds of false positives. The incident escalated significantly before it was discovered. The CISO has asked the incident response manager to recommend improvements to prevent this from happening again. What should the manager recommend as the primary action?

A.Increase all alert thresholds to reduce volume
B.Tune SIEM rules to eliminate known false positives
C.Hire additional security analysts to handle the load
D.Disable all non-critical alert categories
AnswerB

Fine-tuning rules reduces noise while maintaining detection of true positives.

Why this answer

Tuning the SIEM rules to reduce false positives is the most direct way to improve alert quality without losing coverage. Increasing thresholds may cause missed real alerts. Hiring more staff is a longer-term solution.

Disabling non-critical alerts could remove important detection capabilities.

266
MCQhard

An organization's security strategy includes a goal to achieve CMM Level 3. What capability does the organization need to demonstrate?

A.Standardized and documented security processes
B.Ad-hoc security processes
C.Quantitative measurement of process effectiveness
D.Continuous process optimization
AnswerA

Correct: Level 3 requires standardization.

Why this answer

Level 3 (Defined) requires standardized, documented processes across the organization.

267
MCQhard

A multinational organization is evaluating its risk appetite for a new cloud-based customer relationship management (CRM) system. The system will store personal data across multiple jurisdictions with varying data protection laws. The risk committee has set a risk appetite statement that allows only low residual risk. Which of the following controls is MOST critical to ensure compliance with the risk appetite?

A.Implement data classification and strict role-based access controls
B.Conduct continuous monitoring and logging of all system activities
C.Encrypt all data at rest and in transit using strong algorithms
D.Negotiate service-level agreements (SLAs) with cloud provider for uptime
AnswerA

Data classification and RBAC directly control who can access sensitive data, reducing risk to an acceptable level.

Why this answer

The risk appetite allows only low residual risk, meaning controls must directly reduce the likelihood or impact of a data breach to an acceptable level. Data classification and strict role-based access controls (RBAC) are the most critical because they enforce least-privilege access to personal data, directly mitigating the primary risk of unauthorized exposure across jurisdictions with varying data protection laws. Without proper classification and RBAC, even encryption or monitoring cannot prevent an authorized user from improperly accessing or exfiltrating data, leaving residual risk above the low threshold.

Exam trap

The trap here is that candidates often select encryption (Option C) as the most critical control because it is a strong technical safeguard, but they overlook that encryption does not address the risk of authorized users misusing data, which is the primary driver of residual risk in a multi-jurisdictional environment with strict compliance requirements.

How to eliminate wrong answers

Option B is wrong because continuous monitoring and logging are detective controls that identify breaches after they occur, but they do not reduce the likelihood or impact of unauthorized access to meet a low residual risk appetite; they only provide visibility. Option C is wrong because encryption protects data confidentiality if data is intercepted or stolen, but it does not prevent authorized users from misusing access or violating data protection laws, so residual risk from insider threats remains high. Option D is wrong because SLAs for uptime address availability and business continuity, not data protection or compliance with privacy laws, and thus have no direct effect on the residual risk of unauthorized data access or legal non-compliance.

268
MCQhard

An organization uses ISO 27001 Annex A as its control framework. During a risk assessment, a control weakness is identified that could lead to a high-impact data breach. However, implementing the recommended control is cost-prohibitive. Which approach BEST addresses this situation?

A.Transfer the risk through cyber insurance
B.Implement a compensating control that provides equivalent protection
C.Reduce the risk rating to justify not implementing
D.Accept the risk without further action
AnswerB

Compensating controls address the risk differently but effectively.

Why this answer

Compensating controls provide an alternative means of mitigating risk when the primary control is not feasible.

269
MCQeasy

An organization has recently experienced a data breach due to an insider threat. The board has requested an update on governance improvements. Which of the following should the information security manager recommend first?

A.Developing a formalized insider threat program with clear roles and responsibilities.
B.Conducting annual security awareness training for all employees.
C.Implementing two-factor authentication for all critical systems.
D.Deploying endpoint detection and response (EDR) software on all systems.
AnswerA

This establishes governance over insider risk, including monitoring and response.

Why this answer

A formalized insider threat program with clear roles and responsibilities is the first governance improvement because it establishes a structured framework for detecting, preventing, and responding to insider threats. Unlike tactical controls, this program defines ownership, escalation paths, and policy integration, directly addressing the board's request for governance improvements rather than just technical fixes.

Exam trap

The trap here is that candidates often confuse tactical security controls (like MFA or EDR) with governance improvements, failing to recognize that the board's request specifically targets the need for a structured program with defined accountability, not just additional technology layers.

How to eliminate wrong answers

Option B is wrong because annual security awareness training is a general awareness measure that does not specifically address the governance gap exposed by an insider threat breach; it lacks the role-based accountability and programmatic structure needed for governance. Option C is wrong because implementing two-factor authentication is a technical access control that mitigates credential theft but does not address the governance failure in managing insider risks, such as policy enforcement or role definitions. Option D is wrong because deploying endpoint detection and response (EDR) software is a detective technical control that focuses on post-compromise detection, not the proactive governance framework required to define roles, responsibilities, and oversight for insider threat management.

270
Multi-Selectmedium

An information security manager is developing a security program for a multinational organization. Which of the following should be considered when defining the program scope? (Select THREE)

Select 3 answers
A.Business objectives and strategy
B.Current technology architecture
C.All information assets, including those managed by third parties
D.Applicable legal and regulatory requirements
AnswersA, C, D

Why this answer

Business objectives and strategy (A) are foundational because the security program must align with and support the organization's mission, risk appetite, and strategic goals. Without this alignment, security controls may conflict with business operations or fail to prioritize critical assets, leading to wasted resources or increased risk exposure.

Exam trap

The trap here is that candidates often select 'Current technology architecture' (B) because it seems practical, but CISM emphasizes that scope should be driven by business needs, legal obligations, and asset inventory, not by existing infrastructure, which can become a constraint rather than a guide.

Why the other options are wrong

B

Architecture is a design element, not a scope determinant.

271
MCQhard

An organization is compromised by an APT that has established multiple backdoors across the network. What is the most effective eradication strategy?

A.Monitor network traffic for anomalies.
B.Remove each backdoor individually using forensics.
C.Rebuild all affected systems from trusted backups after ensuring the attack vector is closed.
D.Isolate compromised segments from the rest of the network.
AnswerC

Correct: Ensures complete removal of persistence.

Why this answer

Rebuilding all affected systems from trusted backups ensures that any backdoors, rootkits, or persistence mechanisms left by the APT are completely removed. This approach is the most effective because APTs often deploy multiple, redundant backdoors that may not all be discovered through individual removal. Closing the attack vector first prevents re-infection during the rebuild process.

Exam trap

The CISM exam often tests the distinction between containment (isolating segments) and eradication (removing the threat), and candidates mistakenly choose isolation as the final step instead of recognizing that eradication requires complete system rebuild from trusted media.

How to eliminate wrong answers

Option A is wrong because monitoring network traffic for anomalies is a detection and containment activity, not an eradication strategy; it does not remove the backdoors already present. Option B is wrong because removing each backdoor individually using forensics is unreliable against a sophisticated APT, which may have hidden or redundant backdoors that are not all discoverable, leading to incomplete eradication. Option D is wrong because isolating compromised segments is a containment measure that limits lateral movement but does not eliminate the backdoors from the affected systems, leaving the organization vulnerable to future exploitation.

272
MCQmedium

During a third-party risk assessment, the security team discovers that a critical vendor has subcontracted data processing to another company without notification. This represents which type of risk?

A.Nth-party risk
B.Fourth-party risk
C.Inherent risk
D.Residual risk
AnswerA

Nth-party risk covers risks from subcontractors or suppliers further down the chain.

Why this answer

Nth-party risk refers to risks from suppliers of your suppliers, which can be overlooked.

273
MCQmedium

A security awareness program includes phishing simulations. Which metric best measures the long-term effectiveness of the program?

A.Number of phishing simulation campaigns per year
B.Click rate trend over multiple simulation cycles
C.Pass rate on phishing simulation knowledge test
D.Number of employees who report phishing emails
AnswerB

Shows sustained improvement in user vigilance.

Why this answer

A sustained downward trend in click rate over time indicates improved awareness and behavior, while single-click rate or reported emails may vary.

274
MCQmedium

An organization is implementing a defense-in-depth strategy. Which of the following control combinations BEST exemplifies this approach?

A.Access control lists, data loss prevention, and encryption
B.Firewall, antivirus, and encryption
C.Network segmentation, intrusion detection system, and incident response plan
D.Security awareness training, vulnerability scanning, and patching
AnswerC

This includes preventive, detective, and corrective controls across multiple layers.

Why this answer

Defense-in-depth uses multiple layers of controls; here, network segmentation (preventive), IDS (detective), and incident response plan (corrective) cover different stages.

275
MCQhard

A security analyst discovers that an employee's credentials were used to access a sensitive database containing customer PII. The analyst immediately disables the account and begins remediation. Which incident category best describes this scenario?

A.Data breach
B.Physical security
C.Account compromise
D.Insider threat
AnswerC

The key action is unauthorized use of credentials, which is account compromise.

Why this answer

The incident involves unauthorized use of legitimate credentials to access a sensitive database, which is the defining characteristic of an account compromise. The immediate disabling of the account and remediation aligns with standard incident response procedures for credential theft, where the attacker has gained authenticated access without authorization. This is distinct from a data breach, which focuses on the exfiltration or exposure of data, not the method of access.

Exam trap

The trap here is that candidates confuse the method of access (account compromise) with the outcome (data breach), but CISM distinguishes incidents by the root cause and attack vector, not just the potential impact.

How to eliminate wrong answers

Option A is wrong because a data breach specifically refers to the confirmed exfiltration, loss, or unauthorized disclosure of data, whereas this scenario only describes unauthorized access using compromised credentials—data may not have been extracted or exposed. Option B is wrong because physical security incidents involve tangible assets like unauthorized entry to a facility, theft of hardware, or tampering with physical controls, not the use of digital credentials to access a database. Option D is wrong because an insider threat requires the actor to be an employee, contractor, or trusted party with legitimate access who intentionally or negligently causes harm, but this scenario does not specify the identity of the attacker—it could be an external threat actor using stolen credentials.

276
MCQmedium

An organization is developing a security policy for remote access. According to the policy hierarchy, where should this policy fit?

A.Procedure
B.Guideline
C.Enterprise security policy
D.Domain-specific standard
AnswerD

Standards define mandatory requirements for specific domains.

Why this answer

Enterprise security policy is high-level; domain-specific standards provide mandatory requirements for specific areas like remote access.

277
Multi-Selectmedium

A CISO is preparing a business case for a new security investment. Which TWO elements are most important to include to justify the investment?

Select 2 answers
A.Breach cost avoidance based on industry benchmarks
B.Vendor reputation
C.Ease of implementation
D.Risk reduction value
E.Number of security team members
AnswersA, D

Quantifies potential savings by avoiding breaches.

Why this answer

Risk reduction value and breach cost avoidance directly quantify the benefits.

278
MCQhard

A security analyst suspects a credential compromise involving an executive's account. The analyst has isolated the system. What should be the NEXT step according to best practices?

A.Create a forensic image of the affected system
B.Block the account in Active Directory
C.Notify the executive and ask them to change their password
D.Reset the executive's password immediately
AnswerA

Forensic imaging preserves evidence before any changes are made.

Why this answer

Before any remediation, preserving evidence (forensic image) is critical for investigation and potential legal action. Then notify the incident manager to follow the playbook.

279
MCQhard

A multinational organization handles personal data of EU residents. Which regulatory requirement must the information security program address?

A.SOX
B.PCI DSS
C.HIPAA
D.GDPR
AnswerD

GDPR protects personal data of EU residents.

Why this answer

GDPR applies to any organization processing personal data of EU residents, regardless of location.

280
MCQmedium

A company is designing a security awareness program. Which approach is MOST effective for ensuring that employees apply security principles in their daily work?

A.Annual computer-based training for all employees covering general security topics
B.Role-based training: developers receive secure coding training, executives receive social engineering awareness
C.Monthly phishing simulations without any accompanying training
D.A one-time security awareness seminar conducted by an external consultant
AnswerB

Tailored training addresses specific risks and is more effective in changing behavior.

Why this answer

Role-based training targets specific risks relevant to each job function, making the training more practical and memorable.

281
MCQeasy

A small accounting firm with 50 employees recently suffered a ransomware attack that encrypted all client data on its file server. The firm had no backup strategy, and the attackers demanded a ransom for decryption. The firm paid the ransom, but many clients left due to loss of trust. The firm’s owner has now hired you as a part-time risk manager. Your first task is to develop a risk management program. What is the most appropriate initial step?

A.Purchase a comprehensive cyber insurance policy
B.Fire the IT staff responsible for the security failures
C.Conduct a risk assessment to identify assets, threats, and vulnerabilities
D.Immediately implement a backup and disaster recovery solution
AnswerC

Correct; risk assessment is the first step to understand the risk landscape.

Why this answer

The first step in developing a risk management program, per the CISM framework, is to conduct a risk assessment. This identifies the specific assets (e.g., client data on the file server), threats (e.g., ransomware), and vulnerabilities (e.g., lack of backups, weak access controls) that led to the incident. Without this foundational analysis, any subsequent controls—such as backups or insurance—would be misaligned with the firm's actual risk profile, potentially wasting resources on ineffective measures.

Exam trap

The CISM framework emphasizes that risk management must begin with identification (risk assessment) before any treatment (mitigation, transfer, or acceptance). The trap here is that candidates jump to a technical fix (backups) or a financial fix (insurance) without first understanding the full scope of risks.

How to eliminate wrong answers

Option A is wrong because purchasing a cyber insurance policy before conducting a risk assessment is a reactive financial transfer that does not address the root causes of the attack (e.g., no backups, poor security posture). Insurance may also be denied or voided if the firm cannot demonstrate a proper risk management process. Option B is wrong because firing IT staff is a punitive, non-technical response that does not remediate the systemic security failures (e.g., lack of backup strategy, missing patch management).

It also ignores the owner's own responsibility for not prioritizing security investments. Option D is wrong because immediately implementing a backup solution without a prior risk assessment may lead to improper configuration (e.g., storing backups on the same network segment as the file server, allowing ransomware to encrypt them) or failure to address other critical vulnerabilities (e.g., weak authentication, unpatched software).

282
MCQeasy

A policy exception management process allows a business unit to temporarily deviate from a security policy. What is the MOST important requirement for such an exception?

A.Documentation of the exception
B.Implementation of compensating controls
C.Approval by the CISO only
D.A fixed expiration date
AnswerB

Compensating controls reduce risk to an acceptable level.

Why this answer

Compensating controls are essential to mitigate the risk of the exception, ensuring the organization's risk posture is acceptable.

283
MCQeasy

In designing a security programme for a mid-sized enterprise, the CISO is deciding which security framework to adopt for control selection. Which of the following frameworks is specifically structured around implementation groups (IG1, IG2, IG3) to help organizations prioritize controls based on risk and maturity?

A.CIS Controls v8
B.ISO 27001 Annex A
C.NIST SP 800-53
D.COBIT 2019
AnswerA

CIS Controls v8 define Implementation Groups (IG1, IG2, IG3) for prioritization.

Why this answer

The CIS Controls v8 are organized into three Implementation Groups (IG1, IG2, IG3) to guide organizations in prioritizing controls based on their risk profile and security maturity. NIST SP 800-53 and ISO 27001 use different categorizations.

284
Multi-Selectmedium

Which TWO of the following are essential components of a security program governance structure?

Select 2 answers
A.Security charter
B.Vulnerability scanning schedule
C.Security steering committee
D.Incident response plan
E.Help desk ticketing system
AnswersA, C

Defines roles, responsibilities, and authority.

Why this answer

Options A and C are correct. A security charter establishes the authority and scope of the security program, forming a foundational governance document. A security steering committee provides oversight and strategic direction, ensuring alignment with business objectives.

Option B (vulnerability scanning schedule) is an operational activity, not part of governance. Option D (incident response plan) is an operational plan, not a governance component. Option E (help desk ticketing system) is a tool for operational support, not governance.

285
MCQeasy

An organization experiences a DDoS attack that overwhelms their internet connection. Which containment strategy would be MOST effective?

A.Shut down all external connectivity.
B.Change firewall rules to block all traffic.
C.Add more bandwidth to absorb the attack.
D.Contact the ISP for traffic scrubbing or blackhole routing.
AnswerD

Effective mitigation at network level.

Why this answer

ISPs can perform traffic scrubbing to filter out malicious traffic while allowing legitimate traffic, thus mitigating the DDoS attack without completely cutting off connectivity. Option A (shutting down all external connectivity) would stop all traffic, including legitimate, causing a complete outage. Option B (changing firewall rules to block all traffic) would also block all traffic and likely not be sustainable.

Option C (adding more bandwidth) might absorb some attacks but is not effective against large-scale DDoS attacks and does not address the malicious traffic.

286
MCQmedium

An organization has just experienced a P1 incident. Which of the following communication steps should occur FIRST?

A.Inform customers
B.Notify law enforcement
C.Issue a media statement
D.Notify executive leadership
AnswerD

Executives need immediate awareness to make decisions.

Why this answer

Internal communication, especially to executives, is typically the first priority to ensure leadership is informed.

287
MCQhard

A financial institution has a mature incident response program. During a security incident, the incident response team identifies that a business-critical application is affected. The team must decide whether to continue containing the incident or allow limited operations to continue. Which factor should be given the HIGHEST priority?

A.Maintaining customer trust.
B.Minimizing downtime of the application.
C.Regulatory compliance and data protection.
D.Preserving evidence for potential litigation.
AnswerC

Compliance and data protection are critical and must be prioritized.

Why this answer

In a mature incident response program, regulatory compliance and data protection take precedence because financial institutions are subject to strict data privacy laws (e.g., GDPR, PCI DSS, SOX) that mandate safeguarding sensitive data during an incident. Allowing limited operations could lead to unauthorized data exposure or breach of legal obligations, resulting in severe penalties and reputational damage that outweigh the benefits of continued uptime.

Exam trap

The trap here is that candidates often prioritize minimizing downtime (Option B) or preserving customer trust (Option A) because they focus on business continuity, but CISM emphasizes that regulatory compliance and data protection are non-negotiable and must override operational concerns during a security incident.

How to eliminate wrong answers

Option A is wrong because maintaining customer trust, while important, is a secondary outcome of proper incident handling and not the highest priority when regulatory mandates require immediate containment to prevent data loss. Option B is wrong because minimizing downtime of the application is a business continuity concern, but in a security incident, allowing operations to continue risks further compromise and data exfiltration, which can cause far greater long-term damage. Option D is wrong because preserving evidence for potential litigation is a consideration but should not override the immediate need to comply with data protection laws and stop ongoing unauthorized access or data leakage.

288
Drag & Dropmedium

Order the steps for establishing a security incident response team (IRT).

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

Building an IRT starts with defining roles, then recruiting, developing procedures, acquiring tools, and testing.

289
Multi-Selecthard

An organization is implementing an identity and access management (IAM) program. Which THREE of the following are key components of a mature IAM program?

Select 3 answers
A.Biometric authentication for all users.
B.Role-based access control (RBAC) aligned with job functions.
C.Quarterly access reviews for critical systems.
D.Single sign-on (SSO) for all cloud applications.
E.Automated provisioning and de-provisioning of user accounts.
AnswersB, C, E

RBAC simplifies access management.

Why this answer

Mature IAM includes lifecycle management (provisioning/de-provisioning), role-based access control (RBAC), and periodic access reviews to ensure least privilege.

290
MCQeasy

Which of the following is the primary purpose of an information security program?

A.Implement firewalls and antivirus software.
B.Achieve compliance with regulations only.
C.Eliminate all security risks.
D.Protect the confidentiality, integrity, and availability of information assets.
AnswerD

Core CIA triad aligned with business objectives.

Why this answer

The primary purpose of an information security program is to safeguard the confidentiality, integrity, and availability (CIA) of information assets. This aligns with the core definition of information security as defined in standards like ISO/IEC 27001 and NIST SP 800-53, which frame security controls around protecting these three attributes. A program must be risk-based and business-aligned, not just a collection of tools or compliance checklists.

Exam trap

The trap here is that candidates confuse operational security tools (like firewalls and antivirus) with the strategic, governance-level purpose of an information security program, which is to protect the CIA triad rather than to deploy specific technologies or achieve checkbox compliance.

How to eliminate wrong answers

Option A is wrong because implementing firewalls and antivirus software are tactical controls, not the strategic purpose of an entire security program; a program must encompass governance, risk management, and policy, not just specific technologies. Option B is wrong because achieving compliance is only one potential benefit of a security program, not its primary purpose; compliance alone does not guarantee security and can create a false sense of safety (e.g., meeting PCI DSS checkbox requirements while leaving critical vulnerabilities unaddressed). Option C is wrong because eliminating all security risks is impossible and economically infeasible; the goal is to reduce risk to an acceptable level, as defined by the organization's risk appetite, not to achieve zero risk.

291
Multi-Selecteasy

Which THREE of the following are typical roles in an incident response team?

Select 3 answers
A.Human resources manager
B.Security analyst
C.Chief executive officer (CEO)
D.Forensic investigator
E.Legal counsel
AnswersB, D, E

Analysts are key IR team members.

Why this answer

The IR team includes security analysts, forensic investigators, and legal counsel; the CMT includes executives like CEO; HR is not a standard IR role.

292
MCQhard

An organization has a mature security program with documented policies and standards. However, during a recent audit, it was found that several business units are not following the mandated data classification standard. What is the MOST likely root cause?

A.Inadequate security awareness training
B.Lack of enforcement mechanisms
C.Outdated data classification policy
D.Insufficient budget for security tools
AnswerB

Why this answer

A mature security program with documented policies and standards indicates that the classification rules are already defined. The audit finding that business units are not following the mandated standard points to a failure in enforcement mechanisms—such as automated Data Loss Prevention (DLP) rules, access control policies, or mandatory labeling in SharePoint—rather than a lack of awareness or outdated policy. Without enforcement (e.g., Group Policy Objects blocking unclassified data uploads or SIEM alerts for missing classification tags), even well-trained staff may bypass the standard.

Exam trap

ISACA often tests the distinction between 'lack of awareness' and 'lack of enforcement'—the trap here is that candidates assume training is the solution to non-compliance, but in a mature program with documented policies, the root cause is almost always the absence of automated enforcement or consequences.

Why the other options are wrong

A

Training may exist; the issue is lack of consequence for non-compliance.

C

The policy is documented and mature; outdatedness is not indicated.

D

Budget may affect tools but not directly cause non-compliance with a standard.

293
MCQmedium

During a major incident, the crisis management team (CMT) has been activated. Which of the following is typically NOT a member of the CMT?

A.Security analyst
B.General counsel
C.Chief information security officer
D.CEO
AnswerA

Security analysts are on the IR team, not the CMT.

Why this answer

The CMT includes senior executives like CEO, CFO, CISO, GC, and Communications; a security analyst is part of the incident response team, not the CMT.

294
Matchingmedium

Match each risk management term to its definition.

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

Concepts
Matches

Risk level before controls are applied

Risk remaining after controls are implemented

Amount of risk the organization is willing to accept

Acceptable variation around the risk appetite

Process of modifying risk by applying controls

Why these pairings

Key risk management terms from CISM: Risk is the effect of uncertainty on objectives; controls are measures that modify risk; vulnerabilities are weaknesses that can be exploited; threats are potential causes of incidents. The distractor pairs swap risk with threat and control with vulnerability.

295
MCQhard

After a ransomware attack, the incident response team successfully restores systems from backups. However, the ransomware encrypts files that were modified after the last backup was taken. Which of the following is the BEST way to minimize future data loss?

A.Train users to save files to network drives.
B.Perform full backups daily instead of weekly.
C.Implement a data loss prevention (DLP) system.
D.Use continuous data protection (CDP) with frequent snapshots.
AnswerD

Continuous data protection (CDP) with frequent snapshots captures every write operation in near real-time, allowing recovery to any point before the ransomware encryption, thereby minimizing data loss from files modified after the last full backup.

Why this answer

Continuous data protection (CDP) with frequent snapshots captures every write operation in near real-time, allowing recovery to any point before the ransomware encryption. This eliminates the gap between the last backup and the attack, ensuring that even files modified after the last full backup can be restored without data loss.

Exam trap

The trap here is that candidates often choose 'Perform full backups daily' (Option B) thinking more frequent backups are sufficient, but they overlook that even daily backups leave a gap where modified files can be encrypted and lost, whereas CDP provides near-continuous recovery points.

How to eliminate wrong answers

Option A is wrong because training users to save files to network drives does not protect against ransomware encryption of those drives; network drives are equally vulnerable if mounted and accessible. Option B is wrong because performing full backups daily instead of weekly reduces the backup window but still leaves a gap of up to 24 hours during which modified files can be encrypted and lost. Option C is wrong because a data loss prevention (DLP) system monitors and prevents unauthorized data exfiltration, not file encryption or backup gaps; it does not address recovery of encrypted files.

296
MCQmedium

An organization has implemented a new web application that processes sensitive customer data. The risk assessment identified a high likelihood of SQL injection attacks due to insufficient input validation. Which of the following is the BEST risk treatment strategy?

A.Transfer the risk by purchasing cyber insurance
B.Avoid the risk by discontinuing the web application
C.Remediate the risk by implementing parameterized queries and input validation
D.Accept the risk because the likelihood is low after compensating controls
AnswerC

This directly addresses the vulnerability and reduces the risk to an acceptable level.

Why this answer

Parameterized queries (prepared statements) and input validation directly address the root cause of SQL injection by separating SQL logic from user-supplied data. This is a remediation (mitigation) strategy that reduces the likelihood of exploitation to an acceptable level, which aligns with the high-risk scenario described.

Exam trap

The trap here is that candidates often confuse risk transfer (insurance) with risk mitigation, or they incorrectly assume that accepting risk is a default option when the scenario clearly indicates a high-likelihood, high-impact vulnerability that can be directly fixed with a standard coding practice.

How to eliminate wrong answers

Option A is wrong because purchasing cyber insurance transfers the financial impact of a breach, not the technical risk itself; the SQL injection vulnerability remains exploitable, and insurance does not prevent data loss or regulatory penalties. Option B is wrong because avoiding the risk by discontinuing the web application would eliminate business functionality and is disproportionate when a proven technical control (parameterized queries) exists to mitigate the vulnerability. Option D is wrong because accepting the risk is only appropriate when residual risk is low after compensating controls, but the scenario states the likelihood is high and no compensating controls have been implemented; accepting without remediation would leave the organization exposed to a high-probability attack.

297
MCQeasy

Which of the following best describes residual risk?

A.Risk before any controls are applied
B.Risk that remains after implementing controls
C.The likelihood that a control will fail
D.The level of risk an organization is willing to accept
AnswerB

Residual risk is the remaining risk after mitigation.

Why this answer

Residual risk is defined in information security risk management as the risk that remains after management has implemented all planned controls. This concept is central to the CISM framework because it represents the exposure that must be accepted, transferred, or further mitigated by the organization. Unlike inherent risk (before controls), residual risk accounts for the effectiveness of the security measures in place.

Exam trap

The trap here is that candidates often confuse residual risk with risk appetite (Option D), but residual risk is the actual remaining exposure after controls, while risk appetite is the threshold for acceptable exposure.

How to eliminate wrong answers

Option A is wrong because it describes inherent risk, which is the risk level before any controls are applied, not the risk that remains after controls. Option C is wrong because it describes control risk or the likelihood of control failure, which is a component of residual risk calculation but not the definition of residual risk itself. Option D is wrong because it describes risk appetite or risk tolerance, which is the amount of risk an organization is willing to accept, not the actual risk remaining after controls.

298
Multi-Selectmedium

Which TWO metrics are considered leading indicators for information security program performance?

Select 2 answers
A.Patch compliance percentage
B.Phishing click rate
C.Number of data breaches
D.Mean time to detect (MTTD)
AnswersA, B

High patch compliance reduces vulnerability risk, predicting fewer future exploits.

Why this answer

Leading indicators predict future performance; phishing click rate and patch compliance are proactive measures.

299
MCQhard

A bank detects unusual activity on a server containing sensitive financial data. The activity appears to be from a compromised vendor account that has legitimate remote access to the server for maintenance. The incident manager must decide on containment while maintaining business operations. The vendor account has elevated privileges and is used for routine updates. Disabling the account would delay critical maintenance. What is the BEST course of action?

A.Contact the vendor to ask about the unusual activity.
B.Isolate the affected server from the network while allowing necessary access through a jump box.
C.Disable the vendor's account immediately.
D.Block all remote access from external IPs.
AnswerB

Contains the threat while maintaining essential vendor access securely.

Why this answer

The best course of action because it isolates the compromised server from the main network while still allowing legitimate vendor maintenance through a controlled jump box. This balances security and business continuity. Option A is ineffective as the vendor may be compromised or unaware.

Option C is too disruptive and would halt critical updates. Option D is overly broad and could impact other necessary remote access.

300
MCQmedium

A financial institution is designing an incident response plan. They want to ensure that during a ransomware incident, critical transaction systems can be restored within 4 hours. Which metric should be used to measure this requirement?

A.Mean Time to Repair (MTTR)
B.Recovery Time Objective (RTO)
C.Mean Time Between Failures (MTBF)
D.Recovery Point Objective (RPO)
AnswerB

RTO defines the maximum acceptable downtime.

Why this answer

The Recovery Time Objective (RTO) defines the maximum acceptable downtime after a disaster or incident, which directly aligns with the requirement to restore critical transaction systems within 4 hours. In incident management, RTO is the metric used to set the target for system recovery, ensuring business continuity. For ransomware incidents, RTO drives the restoration strategy and resource allocation to meet the 4-hour window.

Exam trap

The trap here is confusing RTO (time to restore) with RPO (data loss tolerance), as both are recovery metrics but address different dimensions—candidates often pick RPO when the question mentions 'restore' without carefully noting the time constraint for restoration versus data age.

How to eliminate wrong answers

Option A (Mean Time to Repair, MTTR) is wrong because MTTR measures the average time taken to repair a failed component after it has failed, not the maximum allowable downtime for a system; it is a reliability metric, not a recovery target. Option C (Mean Time Between Failures, MTBF) is wrong because MTBF measures the average time between inherent failures of a system, indicating reliability, not the recovery time requirement after an incident. Option D (Recovery Point Objective, RPO) is wrong because RPO defines the maximum acceptable data loss measured in time (e.g., how old the restored data can be), not the time to restore operations; it answers 'how much data can we lose?' not 'how fast must we recover?'.

Page 3

Page 4 of 12

Page 5