Free CISSP Exam Flashcards
Memorize 50 essential terms and definitions for the Certified Information Systems Security Professional. See the term, recall the definition, then flip to check yourself.
CIA Triad
The three fundamental principles of information security: Confidentiality (protecting data from unauthorized access), Integrity (ensuring data accuracy and preventing unauthorized modification), and Availability (ensuring authorized users can access data when needed). This framework guides all security decisions and controls in an organization.
Filter by Topic
Jump to Card
About These CISSP Flashcards
These 50 flashcards are designed to help you memorize key terms and definitions for the Certified Information Systems Security Professional. Each card shows a term on the front and its definition on the back—the classic flashcard format for vocabulary memorization. Use these alongside our practice questions to build both recall and comprehension.
Topics Covered
Complete Flashcard Reference
Review every term in this set. Open any term to reveal its definition.
CIA Triad
The three fundamental principles of information security: Confidentiality (protecting data from unauthorized access), Integrity (ensuring data accuracy and preventing unauthorized modification), and Availability (ensuring authorized users can access data when needed). This framework guides all security decisions and controls in an organization.
Defense in Depth
A layered security strategy that implements multiple security controls at different levels to protect assets. If one layer fails, additional layers continue to provide protection. Examples include combining firewalls, IDS/IPS, encryption, access controls, and security awareness training to create overlapping defensive barriers.
Least Privilege
A security principle stating that users, processes, and systems should only have the minimum access rights necessary to perform their authorized functions. This reduces the attack surface and limits potential damage from compromised accounts or insider threats. Access should be granted on a need-to-know basis and regularly reviewed.
AAA (Authentication, Authorization, Accounting)
A framework for controlling access to resources. Authentication verifies user identity, Authorization determines what resources the authenticated user can access, and Accounting tracks user activities for auditing and billing purposes. Together, these ensure secure and traceable access management.
Separation of Duties
A security principle that divides critical functions among different people to prevent fraud and errors. No single person should have complete control over a critical transaction from start to finish. For example, the person who approves payments should not be the same person who processes them.
Need to Know
An access control principle where individuals are only given access to information required to perform their specific job duties. Works in conjunction with least privilege to minimize data exposure. Commonly used in classified environments and sensitive data handling scenarios.
Security by Design
Integrating security considerations from the initial design phase rather than adding them later. This proactive approach reduces vulnerabilities, lowers costs, and ensures security is built into systems, applications, and processes from the ground up. Also known as 'shift left' security.
Fail-Safe and Fail-Secure
Fail-safe defaults to a secure state when failure occurs (e.g., door unlocks during fire for safety). Fail-secure maintains security even during failure (e.g., door stays locked during power outage). The choice depends on whether safety or security is the priority in specific scenarios.
Risk
The potential for loss or damage when a threat exploits a vulnerability. Calculated as Risk = Threat × Vulnerability × Impact. Organizations must identify, assess, and manage risks through various strategies including avoidance, mitigation, transfer, or acceptance based on business priorities.
Threat
Any circumstance or event with the potential to cause harm to an asset through unauthorized access, destruction, disclosure, or modification. Threats can be natural (floods, earthquakes), human (hackers, insiders), or environmental (power failures). Understanding threats is essential for risk assessment.
Vulnerability
A weakness in a system, process, or control that could be exploited by a threat. Vulnerabilities can exist in software (bugs, misconfigurations), hardware (outdated firmware), processes (weak procedures), or people (lack of training). Regular vulnerability assessments help identify and remediate weaknesses.
BCP (Business Continuity Planning)
A comprehensive plan ensuring critical business functions continue during and after a disaster or disruption. Includes alternate work sites, backup personnel, communication plans, and procedures for maintaining operations. BCP focuses on the entire business, not just IT systems.
DRP (Disaster Recovery Plan)
A documented process for recovering IT systems and data after a disaster. Includes backup strategies, recovery procedures, alternate processing sites (hot, warm, cold), and restoration priorities. DRP is a subset of BCP focused specifically on technology recovery.
RPO and RTO
RPO (Recovery Point Objective): maximum acceptable data loss measured in time (e.g., 1 hour of data). RTO (Recovery Time Objective): maximum acceptable downtime before systems must be restored. These metrics drive backup frequency and recovery strategies.
Symmetric Encryption
Encryption using the same key for both encryption and decryption. Fast and efficient for large amounts of data. Common algorithms include AES (Advanced Encryption Standard), DES, and 3DES. Main challenge is secure key distribution and management between parties.
Asymmetric Encryption
Encryption using a public-private key pair. Data encrypted with the public key can only be decrypted with the private key, and vice versa. Slower than symmetric but solves key distribution problem. Common algorithms include RSA, ECC (Elliptic Curve Cryptography), and Diffie-Hellman.
Hashing
A one-way cryptographic function that converts data into a fixed-length digest or fingerprint. Cannot be reversed to obtain original data. Used for integrity verification, password storage, and digital signatures. Common algorithms include SHA-256, SHA-3, and BLAKE2.
Digital Signature
A cryptographic technique that provides authentication, integrity, and non-repudiation. The sender hashes a message and encrypts the hash with their private key. Recipients decrypt with the sender's public key and compare hashes to verify authenticity and detect tampering.
PKI (Public Key Infrastructure)
A framework for managing digital certificates and public-private key pairs. Components include Certificate Authorities (CAs) that issue certificates, Registration Authorities (RAs), certificate repositories, and revocation systems (CRL, OCSP). PKI enables secure communications, authentication, and digital signatures.
Digital Certificate
An electronic document that binds a public key to an identity using a trusted CA's digital signature. Contains subject name, public key, issuer, validity period, and usage constraints. Used in SSL/TLS, code signing, email encryption, and authentication.
Encryption at Rest vs in Transit
Encryption at rest protects stored data on disks, databases, or backups (e.g., BitLocker, FileVault). Encryption in transit protects data moving across networks (e.g., TLS, VPN, IPsec). Both are essential for comprehensive data protection and compliance requirements.
Salt and Pepper
Salt is random data added to passwords before hashing to prevent rainbow table attacks. Each password gets a unique salt stored with the hash. Pepper is a secret value added to all passwords before hashing, stored separately from the database, providing additional protection if the database is compromised.
MAC (Mandatory Access Control)
A strict access control model where the system enforces access based on security labels and clearances. Users cannot change permissions. Common in military and government environments with classified information. Examples include SELinux and classified document systems.
DAC (Discretionary Access Control)
An access control model where resource owners decide who can access their resources. Users can grant or revoke permissions at their discretion. Most common in commercial systems. Examples include file permissions in Windows and Unix/Linux systems.
RBAC (Role-Based Access Control)
Access control based on user roles within an organization. Users are assigned to roles, and roles are granted permissions. Simplifies administration by managing permissions at the role level rather than individual users. Widely used in enterprise environments.
ABAC (Attribute-Based Access Control)
A flexible access control model using attributes of users, resources, and environment to make access decisions. Attributes can include department, time of day, location, device type, and data classification. Enables fine-grained, context-aware access control policies.
Multi-Factor Authentication (MFA)
Authentication requiring two or more independent factors: something you know (password), something you have (token, phone), something you are (biometrics), somewhere you are (location), or something you do (behavior). Significantly reduces risk of unauthorized access even if one factor is compromised.
Single Sign-On (SSO)
Authentication mechanism allowing users to access multiple applications with one set of credentials. Improves user experience and reduces password fatigue. Common protocols include SAML, OAuth 2.0, and OpenID Connect. Risk: compromised credentials affect all connected systems.
Biometric Authentication
Authentication using unique physical or behavioral characteristics. Physical: fingerprints, iris/retina scans, facial recognition. Behavioral: voice patterns, typing rhythm, gait. Measured by False Acceptance Rate (FAR), False Rejection Rate (FRR), and Crossover Error Rate (CER).
Access Control Lists (ACLs)
Lists specifying which users or systems have access to specific resources and what operations they can perform. Used in firewalls, routers, file systems, and applications. Can be based on IP addresses, user accounts, or groups. Require regular review and maintenance.
Firewall
A network security device that monitors and controls incoming and outgoing traffic based on security rules. Types include packet filtering, stateful inspection, proxy, and next-generation firewalls (NGFW). Placed at network boundaries to enforce security policies and segment networks.
IDS vs IPS
IDS (Intrusion Detection System) monitors network traffic and alerts on suspicious activity but doesn't block it. IPS (Intrusion Prevention System) actively blocks detected threats in real-time. Both use signature-based, anomaly-based, or behavior-based detection methods.
VPN (Virtual Private Network)
Creates an encrypted tunnel over public networks for secure remote access or site-to-site connections. Types include IPsec (network layer), SSL/TLS VPN (application layer), and WireGuard. Provides confidentiality, integrity, and authentication for data in transit.
Zero Trust Architecture
A security model based on 'never trust, always verify' principle. Assumes no implicit trust regardless of network location. Requires continuous verification of users and devices, microsegmentation, least privilege access, and monitoring all traffic. Addresses modern threats and cloud environments.
Network Segmentation
Dividing a network into smaller segments or zones to limit lateral movement and contain breaches. Implemented using VLANs, subnets, firewalls, and access controls. Critical systems should be isolated from general user networks. Reduces attack surface and improves security monitoring.
DMZ (Demilitarized Zone)
A network segment that sits between the internal network and the internet, hosting public-facing services like web servers, email servers, and DNS. Protected by firewalls on both sides. If compromised, attackers still cannot directly access the internal network.
SIEM (Security Information and Event Management)
A centralized platform that collects, correlates, and analyzes security logs and events from across the infrastructure. Provides real-time monitoring, alerting, dashboards, and forensic analysis. Essential for detecting threats, investigating incidents, and meeting compliance requirements.
Honeypot and Honeynet
Decoy systems designed to attract and detect attackers. Honeypots are individual systems, while honeynets are networks of honeypots. Used for threat intelligence, early warning, and studying attacker techniques. Must be isolated to prevent attackers from using them as a pivot point.
Incident Response Process
A structured approach to handling security incidents: 1) Preparation (plans, tools, training), 2) Identification (detect and verify), 3) Containment (limit damage), 4) Eradication (remove threat), 5) Recovery (restore systems), 6) Lessons Learned (improve processes). Documentation is critical throughout.
SOC (Security Operations Center)
A centralized team responsible for monitoring, detecting, analyzing, and responding to security incidents 24/7. Uses SIEM, threat intelligence, and security tools to protect the organization. Includes analysts, incident responders, and threat hunters working in shifts.
Digital Forensics
The process of collecting, preserving, analyzing, and presenting digital evidence for legal proceedings. Follows strict chain of custody procedures. Key principles: don't alter original evidence, document everything, use forensically sound tools. Types include disk, network, memory, and mobile forensics.
Vulnerability Management
Continuous process of identifying, evaluating, prioritizing, and remediating security vulnerabilities. Includes regular scanning, patch management, configuration reviews, and risk assessment. Uses CVSS scores to prioritize based on severity, exploitability, and business impact.
Patch Management
The process of testing, approving, and deploying software updates to fix vulnerabilities and bugs. Requires balancing security needs with system stability. Critical patches should be prioritized and deployed quickly. Includes maintaining an inventory of systems and testing patches before production deployment.
Change Management
A formal process for controlling changes to systems and infrastructure to prevent unauthorized modifications and reduce outages. Includes change requests, approval workflows, testing, documentation, and rollback plans. Ensures changes are reviewed for security implications before implementation.
Penetration Testing
Authorized simulated cyberattack to identify exploitable vulnerabilities. Types: black box (no knowledge), white box (full knowledge), gray box (partial knowledge). Phases include reconnaissance, scanning, exploitation, post-exploitation, and reporting. Requires written authorization and rules of engagement.
Vulnerability Assessment
Systematic identification and evaluation of security weaknesses using automated scanning tools. Less invasive than penetration testing. Produces reports with vulnerability severity ratings (CVSS scores) and remediation recommendations. Should be performed regularly and after significant changes.
Security Audit
A systematic evaluation of an organization's security posture against established standards, policies, or regulations. Can be internal or external. Reviews controls, policies, procedures, and compliance. Results in findings and recommendations for improvement. Different from assessments as it focuses on compliance.
GDPR (General Data Protection Regulation)
EU regulation protecting personal data and privacy. Applies to any organization processing EU residents' data. Key requirements: consent, data minimization, right to erasure, breach notification within 72 hours, Data Protection Officer (DPO). Violations can result in fines up to 4% of global revenue.
HIPAA (Health Insurance Portability and Accountability Act)
US law protecting patient health information (PHI). Requires administrative, physical, and technical safeguards. Key rules: Privacy Rule (patient rights), Security Rule (electronic PHI protection), Breach Notification Rule. Applies to healthcare providers, insurers, and business associates.
ISO 27001 and NIST Frameworks
ISO 27001 is an international standard for information security management systems (ISMS), providing a certifiable framework. NIST Cybersecurity Framework provides guidelines for managing cybersecurity risk with five functions: Identify, Protect, Detect, Respond, Recover. Both help organizations structure comprehensive security programs.
Frequently Asked Questions
What is the CISSP exam pass rate and how hard is it?
The CISSP pass rate is estimated at 70%, though (ISC)² doesn't publish official statistics. The exam uses Computerized Adaptive Testing (CAT), ranging from 100-150 questions in 3 hours. You need 700 out of 1000 points to pass. CISSP is considered one of the most challenging cybersecurity certifications because it tests broad knowledge across 8 security domains rather than deep technical skills in one area. Many candidates report the exam is 'a mile wide and an inch deep' - covering everything from cryptography to physical security to risk management.
How long should I study for the CISSP exam?
Plan for 3-6 months of dedicated study, spending 2-3 hours daily. The exact time depends on your background: information security professionals with 5+ years experience may need 2-3 months; IT professionals transitioning to security should plan 4-6 months; those without security experience may need 6+ months. Most successful candidates spend 200-300 total hours studying. The Official (ISC)² CISSP Study Guide is essential, and many recommend supplementing with practice exams and video courses.
What are the hardest CISSP domains?
According to candidates, the most challenging CISSP domains are: 1) Security Architecture and Engineering (Domain 3) - covers complex topics like cryptography, security models, and secure design principles; 2) Security and Risk Management (Domain 1) - the largest domain covering governance, compliance, and legal issues; 3) Software Development Security (Domain 8) - tests secure coding practices and SDLC security. Focus extra study time on these domains, especially if you lack hands-on experience in those areas.
Can I take CISSP without 5 years of experience?
Yes, you can take the CISSP exam without meeting the experience requirement. If you pass, you become an Associate of (ISC)² and have 6 years to earn the required experience. The experience requirement is 5 years of cumulative, paid work experience in 2 or more of the 8 CISSP domains (reduced to 4 years with a bachelor's degree or approved credential). You can gain experience as an Associate while working toward full certification. Many employers value the Associate designation as proof of knowledge.
What is the CISSP retake policy and cost?
If you fail CISSP, you must wait 30 days before your first retake, 60 days before your second, and 90 days before your third. After three failures within 12 months, you must wait another 12 months before trying again. There's no lifetime limit on attempts. The exam fee is $749 USD for each attempt, one of the highest in cybersecurity certifications. (ISC)² members receive discounts on retakes. The high cost and waiting periods emphasize the importance of thorough preparation before attempting.
Is CISSP worth it for career advancement?
CISSP is widely considered the gold standard for cybersecurity management and is worth the investment for career advancement. According to (ISC)²'s workforce study, CISSP holders earn an average of $151,860 annually in North America - significantly above non-certified security professionals. The certification is often required or preferred for senior security roles, CISOs, and government positions requiring DoD 8570 compliance. The 5-year experience requirement ensures CISSPs have both knowledge and practical expertise.
Explore More ISC2 Certifications
Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.
More From This Family
Videos and articles for deeper review.