Practice 60 CISSP questions across governance, risk, asset security, architecture, network security, IAM, operations, and secure development.
Level: CISSPDifficulty: advanced60 questions60 min
Answer each CISSP question, choose or type your answer, then review the explanation. Wrong answers are saved locally for review.
Day streak: 0 daysSaved only on this device
Progress0 / 60
Time left: 00:00
No wrong answers saved yet.
No questions match your filters.
Question 1
Which CISSP domain covers security governance, risk management, and legal compliance?
Security and Risk Management covers governance, risk, compliance, ethics, and business continuity planning.
Question 2
Which access principle means users receive only the permissions required for their role?
Least privilege limits access to the minimum required for legitimate work.
Question 3
Which type of security control detects and reports a security incident?
Detective controls such as monitoring and alarms identify incidents after or during an event.
Question 4
What is the primary purpose of a risk assessment?
Risk assessment evaluates threats, vulnerabilities, and impact so organizations can choose appropriate responses.
Question 5
What is residual risk?
Residual risk is the leftover risk after mitigation; management must accept, avoid, transfer, or continue to mitigate it.
Question 6
Which security document states management expectations and is typically high-level?
A policy is high-level direction from management; procedures, standards, and guidelines support it.
Question 7
What is separation of duties designed to prevent?
Separation of duties splits sensitive tasks among multiple people so no one person can act alone.
Question 8
What is defense in depth?
Defense in depth uses overlapping controls so failure of one layer does not expose the asset.
Question 9
Which security goal protects data from unauthorized disclosure?
Confidentiality ensures only authorized parties can access sensitive data. It prevents unauthorized disclosure through controls such as encryption and access permissions. Availability keeps systems accessible, integrity prevents unauthorized modification, and authentication verifies identity, so confidentiality is the goal that directly matches the question.
Question 10
Which security goal ensures data is not modified without authorization?
Integrity protects data from unauthorized alteration and verifies it is accurate and trustworthy.
Question 11
Which security goal ensures systems remain accessible to authorized users?
Availability means systems and data are accessible when needed, supported by redundancy and recovery controls.
Question 12
What is authentication?
Authentication confirms who the user is; authorization then determines what the user may do.
Question 13
What is authorization?
Authorization assigns access based on policy after identity has been verified.
Question 14
Which mechanism provides non-repudiation?
Digital signatures provide non-repudiation by linking a signed message to a specific private key holder.
Question 15
What is the main purpose of cryptography?
Cryptography provides confidentiality, integrity, authentication, and non-repudiation. Encryption protects data from disclosure, hashes detect modification, digital signatures verify senders, and key-based systems support these goals. It does not replace identity management, eliminate every attack, or improve network speed.
Question 16
Which encryption type uses the same key for encryption and decryption?
Symmetric algorithms such as AES use one shared secret key for both operations.
Question 17
In public-key cryptography, which key is used to encrypt a message sent to a recipient?
Anyone can encrypt with the recipient public key, but only the recipient private key can decrypt it.
Question 18
What is a cryptographic hash primarily used for?
A hash creates a fixed-size fingerprint so changes to data can be detected.
Question 19
Which network device filters traffic based on rules?
Firewalls inspect packets and allow or block traffic according to policy.
Question 20
What is a VLAN used for?
VLANs isolate traffic at Layer 2 and can reduce attack surface without changing physical wiring.
Question 21
Which protocol provides encrypted communication for web traffic?
TLS encrypts web traffic and is used by HTTPS to protect data in transit.
Question 22
Which technology creates an encrypted tunnel for remote network access?
A VPN encrypts traffic between a remote user and the network, protecting data in transit.
Question 23
What is a DMZ?
A DMZ sits between trusted and untrusted networks and contains public-facing services.
Question 24
Which concept describes classifying data and applying protection based on its sensitivity?
Asset Security covers classification, ownership, retention, and secure handling of data.
Question 25
What is Identity and Access Management (IAM)?
IAM combines identity lifecycle, authentication, authorization, and auditing controls. It manages who users are, what they may access, and how actions are recorded, usually through policies and role assignments. A firewall, encryption method, or backup service addresses only one part of security rather than the full identity and access framework.
Question 26
What is a directory service?
Directory services such as Active Directory centralize identity information and access policies.
Question 27
Which authentication factor is described as something the user knows?
Knowledge factors include passwords, PINs, and answers to security questions.
Question 28
Which authentication factor is described as something the user has?
Possession factors include smart cards, tokens, phones, and hardware keys.
Question 29
Which authentication factor is described as something the user is?
Inherence factors use biometric traits such as fingerprints, face, or iris patterns.
Question 30
What is single sign-on (SSO)?
SSO improves usability by letting one authenticated session work across trusted applications.
Question 31
What is multi-factor authentication?
MFA combines categories such as knowledge, possession, and inherence to strengthen authentication.
Question 32
What is privileged access management?
Privileged access management limits, rotates, and audits privileged credentials. It reduces risk by giving administrators only the elevated access they need and by monitoring how that access is used. Deleting all admin accounts breaks operations, giving every user admin rights increases risk, and blocking remote access is not the purpose of PAM.
Question 33
What does SIEM provide?
A SIEM collects security events from many sources and helps analysts detect incidents.
Question 34
What does SOAR stand for?
SOAR stands for Security Orchestration, Automation, and Response. It connects security tools and automates response workflows so teams can handle alerts faster and consistently. The other options expand the letters differently and are not the standard industry definition.
Question 35
What is a vulnerability scan?
Vulnerability scans identify missing patches and misconfigurations without confirming exploitation.
Question 36
What is a penetration test?
Penetration testing goes beyond scanning by attempting to exploit vulnerabilities and validate impact.
Question 37
Which incident response activity limits the scope of an incident?
Containment isolates affected systems to stop damage before eradication and recovery.
Question 38
What is the purpose of a business continuity plan (BCP)?
BCP focuses on continuing essential business processes, while DRP focuses on IT recovery.
Question 39
What is a disaster recovery plan (DRP)?
DRP defines recovery objectives, priorities, and procedures for technology after disruption.
Question 40
Which secure coding practice prevents injection attacks?
Validating input and using parameterized queries prevent attackers from injecting malicious commands.
Question 41
Which of the following are core security objectives in the CIA triad? Select all that apply.
The CIA triad is confidentiality, integrity, and availability. Authentication supports access control but is not one of the three objectives.
Question 42
Which of the following are access control models? Select all that apply.
DAC, MAC, and RBAC are access control models. HTTP is a network protocol.
Question 43
Which of the following are authentication factors? Select all that apply.
Common factor categories include knowledge, possession, inherence, and location. Knowledge is something you know, possession is something you have, inherence is something you are, and location can be a contextual factor. All four are recognized categories, so every option is correct.
Question 44
Which of the following are symmetric encryption algorithms? Select all that apply.
AES, 3DES, and Blowfish are symmetric. RSA is an asymmetric algorithm.
Question 45
Which of the following are asymmetric cryptography algorithms? Select all that apply.
RSA, ECC, and Diffie-Hellman are asymmetric. Asymmetric algorithms use a public key and a private key pair for encryption and digital signatures. AES is a symmetric algorithm that uses one shared secret key, so it does not belong in the asymmetric group.
Question 46
Which of the following are phases of incident response? Select all that apply.
Preparation, detection, containment, eradication, recovery, and lessons learned are common incident response phases.
Question 47
Which of the following are secure development practices? Select all that apply.
Input validation, least privilege, and secure defaults reduce vulnerabilities. Skipping tests increases risk.
Question 48
Confidentiality means information is available to everyone at all times.
Confidentiality restricts access to authorized users only; availability is the goal that keeps systems accessible.
Question 49
A vulnerability is the same thing as an exploit.
A vulnerability is a weakness, while an exploit is a technique or tool that takes advantage of a vulnerability.
Question 50
Data remanence is a concern when decommissioning storage media.
Residual data on old media can leak information, so sanitization or destruction is required.
Question 51
Symmetric encryption is generally faster than asymmetric encryption.
Symmetric algorithms are typically faster, which is why hybrid systems use asymmetric keys to exchange symmetric session keys.
Question 52
The principle of least privilege means granting all users administrator access by default.
Least privilege grants only the access users need, and administrative rights are tightly controlled.
Question 53
The security goal that protects data from unauthorized modification is ___.
Integrity ensures data remains accurate and unchanged by unauthorized parties.
Question 54
The process of confirming a user claimed identity is ___.
Authentication verifies identity before authorization grants access. The user proves who they are with credentials such as a password, token, or biometric. After identity is confirmed, authorization decides what resources that user may use, and auditing records the activity.
Question 55
A ___ encrypts traffic between a user and a remote network.
A VPN creates a secure encrypted tunnel for remote access.
Question 56
The access control model that grants rights based on user roles is ___.
RBAC assigns permissions through roles, simplifying administration for large user populations.
Question 57
A documented plan to restore IT systems after a disaster is the ___ recovery plan.
The DRP defines recovery objectives and procedures after a disruptive event.