ACTUAL EXAM | PRACTICE QUESTIONS AND ANSWERS | EXAM
REVIEW | 100% CORRECT ANSWERS | VERIFIED SOLUTIONS
This comprehensive practice examination is meticulously designed for information security
professionals preparing for the Certified Information Systems Security Professional (CISSP)
credentialing assessment, aligned with the rigorous 2026–2027 exam outline updates. Spanning
all eight domains of the CISSP Common Body of Knowledge, this resource integrates advanced
theoretical constructs with real-world scenario-based applications encountered in enterprise
security architecture, governance, and incident response. Each question has been developed to
reflect the cognitive complexity and adaptive difficulty of the live computer adaptive testing
environment. Candidates will engage with complex troubleshooting vignettes, regulatory
compliance dilemmas, cryptographic algorithm selection, physical security integration, and
business continuity planning. By working through these 100 super-advanced questions and
verified solutions, you will identify latent knowledge gaps, reinforce your understanding of
security management principles, and build the analytical stamina required to pass the official
licensing examination on the first attempt.
Table of Contents
Security and Risk Management
Asset Security
Security Architecture and Engineering
Communication and Network Security
Identity and Access Management (IAM)
Security Assessment and Testing
Security Operations
Software Development Security
,Question 1
A multinational organization is implementing a data protection framework that must
accommodate both the extraterritorial scope of the GDPR and sector-specific U.S. federal
regulations. The legal team advises that data residency and the physical location of backups are
critical. Which governance principle best balances these divergent international data sovereignty
mandates?
A) Implementing a uniform global policy based strictly on the most restrictive regulation
B) Segmenting data stores by geographic sovereignty zones and applying localized data handling
matrices
C) Relying on the U.S. Safe Harbor agreement to override conflicting international privacy
statutes
D) Centralizing all data processing in a third-party sovereign cloud that is exempt from local
jurisdictions
Correct Answer: B
Segmenting data stores by geographic sovereignty zones enables a scalable control environment
where a localized data handling matrix applies region-specific privacy rules without crippling
global operations. A uniform strictest policy (A) is often operationally impractical and can
conflict with local data access rights, while Safe Harbor (C) has been invalidated and replaced
by frameworks like the Privacy Shield, which still require rigorous localized assessments. Cloud
centralization (D) is a fallacy, as no provider is universally exempt from jurisdictional subpoena
powers.
Question 2
During a quantitative risk analysis for a tier-4 data center, the security team calculates the
,Annualized Rate of Occurrence (ARO) for a total facility loss as 0.05. The Exposure Factor (EF)
is 100%, and the single loss expectancy is $12 million. What is the maximum annual budget the
organization should logically approve for a perfect mitigation control that reduces the ARO to
zero?
A) $600,000
B) $1.2 million
C) $12 million
D) $240 million
Correct Answer: A
The Annualized Loss Expectancy (ALE) is calculated by multiplying the Single Loss Expectancy
(SLE) by the ARO ($12M × 0.05 = $600,000). The value of the risk to the organization is
$600,000 annually; spending more than this on mitigation would be fiscally illogical as the
control cost would exceed the cost of the loss itself. The $12 million figure (C) represents the
SLE, not the annualized justification for control spending.
Question 3
An internal audit reveals that a legacy relational database stores customer passwords using a one-
way hash function without a salt. The audit finding cites a specific cryptographic failure that
allows attackers to precompute mapping chains for immediate plaintext recovery of unsalted
hashes. Which attack technique does this vulnerability primarily enable?
A) Rainbow table attack
B) Replay attack
C) Man-in-the-middle key downgrade
D) Side-channel timing analysis
, Correct Answer: A
Unsalted hashes are uniquely susceptible to rainbow table attacks, which utilize precomputed
lookup tables of hash-to-plaintext pairs to reverse cryptographic hashing rapidly. A replay
attack (B) involves retransmitting valid network sessions, while a man-in-the-middle key
downgrade (C) targets protocol negotiation flaws. Side-channel timing analysis (D) targets
runtime variations in cryptographic algorithms, not static storage weaknesses.
Question 4
A security architect is designing an identity federation solution using Security Assertion Markup
Language (SAML) 2.0. The solution requires that the service provider trust the authentication
event without receiving the actual authentication secret. Which identity propagation mechanism
achieves this by mediating the trust relationship?
A) The service provider directly validates the user's X.509 certificate against a public CRL
B) The identity provider issues a digitally signed XML token confirming the authentication
context
C) The service provider performs a reverse-DNS lookup to verify the endpoint domain of the
subject
D) The identity provider provisions a synchronized replicated password hash to the service
provider's vault
Correct Answer: B
In SAML federation, the Identity Provider (IdP) generates a signed assertion (a trusted XML
token) that confirms the user's authentication to the Service Provider (SP), establishing a
brokered trust without sharing the password. Direct certificate mapping (A) implies a mutual