Cheat SheetCISSPISC2 · Advanced

CISSP Cheat Sheet 2026

Everything you need on one page before exam day: the 8 domains and their weights, the risk and crypto formulas examiners love, access control models, must-know concepts, and the traps that sink first-timers.

100–150Questions (CAT)
3 hrsMax duration
700/1000Pass score
$749Exam fee (USD)
3 yrsValidity
5 yrsExperience req.
CISSP ISC2 Certified Information Systems Security Professional cheat sheet

01 The 8 domains & weights

The CISSP Common Body of Knowledge (CBK) spans 8 domains, and the exam draws roughly proportionally from each. Security & Risk Management is the single heaviest area at 16%, so if your time is short, that is where it should go — it is also where the management mindset that runs through the whole exam is established. The remaining domains cluster between 10% and 13%, meaning no single technical area can be safely ignored. Memorise these weights cold: they tell you exactly how to budget your study hours and where the marginal question is most likely to come from.

1. Security & Risk Management16%
2. Asset Security10%
3. Security Architecture & Engineering13%
4. Communication & Network Security13%
5. Identity & Access Management (IAM)13%
6. Security Assessment & Testing12%
7. Security Operations13%
8. Software Development Security10%
Read this first: CISSP tests management-level judgement, not technical trivia. Think like a risk manager — almost every question wants the BEST answer for the organisation, which is rarely the most technical option. Governance, policy, and people come before tools.

02 Domain quick reference

The key topics in each of the 8 domains. Know what each domain owns and the vocabulary it uses.

1. Security & Risk Management

Governance · BCP/DR · Ethics

Policies, risk management, legal/regulatory compliance, BCP/DRP, ISC2 Code of Ethics, due care & due diligence.

2. Asset Security

Classification · Retention

Data classification, ownership roles, handling, retention, data remanence and secure destruction.

3. Architecture & Engineering

Security models · Cryptography

Security models (Bell-LaPadula, Biba), secure design, cryptography, physical security.

4. Communication & Network Security

OSI / TCP-IP · Secure protocols

OSI/TCP-IP models, secure network design, segmentation, VPN/IPsec, TLS, secure protocols.

5. Identity & Access Mgmt (IAM)

Identity lifecycle · SSO · Federation

Identity lifecycle, authentication factors, SSO, federation (SAML, OAuth, OIDC), access control models.

6. Security Assessment & Testing

Audits · Pen testing

Security audits, vulnerability assessment, penetration testing, log review, SAST/DAST.

7. Security Operations

Incident response · Logging · DR

Incident response, monitoring/logging, change management, backups, disaster recovery, forensics.

8. Software Development Security

SDLC · OWASP

Secure SDLC, software security controls, OWASP Top 10, code review, maturity models.

03 Risk management formulas

Quantitative risk analysis on CISSP comes down to four relationships, and the exam will hand you a scenario with the raw numbers and expect you to chain them: asset value and exposure factor give you the loss from a single event, and multiplying by how often it happens per year gives the annualized figure that justifies (or kills) a control. Know the terms, the order, and the units — a percentage where dollars belong is a classic distractor.

FormulaMeansTerms
SLE = AV × EFSingle Loss Expectancy: cost of one incident.AV = Asset Value; EF = Exposure Factor (% of asset lost).
ALE = SLE × AROAnnualized Loss Expectancy: expected yearly cost.ARO = Annualized Rate of Occurrence (times per year).
Risk = Threat × VulnerabilityLikelihood a threat exploits a weakness.Add asset value/impact for the full picture.
ROSIReturn on Security Investment: is a control worth it?(ALE before − ALE after) − cost of control.
Pattern to memorise: quantitative analysis uses real numbers (SLE, ALE, dollars) and is objective but data-hungry; qualitative analysis uses relative ratings (high/medium/low) and is fast but subjective. The exam loves to ask which one a scenario describes.

04 Cryptography quick reference

You will not be asked to break a cipher, but you must know which family solves which problem. Symmetric is fast and protects bulk data; asymmetric is slow but solves key exchange and proves identity; hashing protects integrity and stores passwords. Most real systems combine all three — for example, TLS uses asymmetric crypto to exchange a symmetric session key and a hash to verify integrity.

TypeAlgorithmsUse & key fact
SymmetricAES, DES/3DES, Blowfish, RC4One shared key; fast; best for bulk encryption. Key distribution is the hard problem.
AsymmetricRSA, ECC, Diffie-HellmanPublic/private key pair; slower; used for key exchange, digital signatures, non-repudiation.
HashingSHA-2, SHA-3, MD5 (weak)One-way; no key; verifies integrity, not confidentiality. MD5/SHA-1 are deprecated.
Map crypto to the CIA triad: encryption (symmetric/asymmetric) → Confidentiality; hashing and digital signatures → Integrity; redundancy, backups and failover → Availability. Asymmetric signatures also give you authentication and non-repudiation.

05 Access control models

CISSP expects you to recognise an access control model from a one-sentence scenario. The trick is to listen for who makes the access decision: the owner, the system, a role, or a set of attributes. Get that right and the distractor answers fall away.

ModelHow access is decidedExample
DAC — DiscretionaryThe data owner decides who gets access.File owner sets read/write on their own file.
MAC — MandatorySystem enforces labels & clearances; users cannot override.Military/government classified systems (Top Secret, Secret).
RBAC — Role-BasedAccess tied to a job role, not the individual."Nurse" role grants chart access; assign people to the role.
ABAC — Attribute-BasedPolicy on attributes (user, resource, time, location)."Allow if dept=finance AND device=managed AND 9am–5pm".
Rule-BasedGlobal rules applied to everyone (often on top of RBAC).Firewall ACLs; "deny all traffic after hours".
Don't confuse the three big ones: MAC = system enforces labels (government); DAC = the owner decides (most general-purpose OSes); RBAC = access by job role. If a question stresses central control and clearances, it is MAC; if it stresses owner discretion, it is DAC.

06 Network & key security concepts

OSI 7 layers

Physical, Data Link, Network, Transport, Session, Presentation, Application. Mnemonic: Please Do Not Throw Sausage Pizza Away.

TCP/IP model

4 layers: Link, Internet, Transport, Application. Maps onto OSI; CISSP expects you to translate between them.

Firewalls

Stateless (packet filter, rules only), stateful (tracks connections), NGFW (deep inspection, app-aware, IPS built in).

VPN / IPsec

AH = authentication/integrity only; ESP = encryption + integrity. Tunnel mode for site-to-site, transport mode host-to-host.

Common ports

22 SSH, 25 SMTP, 53 DNS, 80 HTTP, 443 HTTPS, 389 LDAP, 636 LDAPS, 3389 RDP.

Core principles

Defense in depth (layered controls), least privilege, separation of duties, need to know, fail secure.

07 Must-know concepts

These are the cross-domain fundamentals that resurface in every section of the exam. If you can recite the CIA triad, distinguish the recovery metrics, and recall the order of the ISC2 canons under pressure, you have a foundation the scenario questions can build on.

  • CIA triad: Confidentiality, Integrity, Availability — the foundation of every control. Often paired with AAA: Authentication, Authorization, Accounting (and Identification).
  • Testing types: SAST = static, white-box, reads source code; DAST = dynamic, black-box, tests the running app. Pen tests can be black/grey/white box.
  • BCP vs DRP: BCP keeps the whole business running; DRP restores IT/systems after a disaster. Know RTO (time to restore), RPO (acceptable data loss), MTD (max tolerable downtime), WRT (work recovery time).
  • Incident response phases: Detection → Response → Mitigation → Reporting → Recovery → Remediation → Lessons Learned.
  • ISC2 Code of Ethics canons (in order): 1) Protect society, the common good, necessary public trust and confidence, and the infrastructure; 2) Act honourably, honestly, justly, responsibly and legally; 3) Provide diligent and competent service to principals; 4) Advance and protect the profession. Order matters — when canons conflict, the earlier one wins, so society always comes first.
  • Due care vs due diligence: due diligence = researching and planning the right thing to do; due care = actually doing it and continuing to do it (the "prudent person" rule). Failing either can be negligence.
  • Security control types: by function — preventive, detective, corrective, deterrent, compensating, recovery, directive; by category — administrative (policy), technical/logical (tech), physical. Expect questions that ask you to classify a given control.

08 Common traps

"BEST" / "MOST" answers: when multiple options look correct, CISSP favours managerial and administrative controls (policy, training, risk acceptance by management) over the purely technical fix. Pick the answer a risk manager would choose.
Due care vs due diligence: diligence is the thinking/planning (investigating, assessing); care is the doing (implementing and maintaining the control). Watch which the scenario describes.
RTO vs RPO: RTO = how fast you must be back up (time); RPO = how much data you can afford to lose (point in time). A 1-hour RPO means hourly backups, not a 1-hour restore.
Code of Ethics canon order: if asked which canon takes priority, it is always protect society first — the canons are applied in their listed order, not by what helps your employer.

09 FAQ

Do I need 5 years experience to take CISSP?

You can sit and pass the exam without it, but to be certified you need 5 years of cumulative paid work experience across 2 or more of the 8 domains. One year is waivable with a relevant 4-year degree or an approved credential. If you lack the experience, you pass the exam and become an Associate of ISC2, with up to 6 years to earn it.

How hard is the CISSP CAT exam?

It is hard because it is broad and management-oriented rather than purely technical. The English CAT (Computerized Adaptive Testing) version is 100 to 150 questions in up to 3 hours, and it adapts difficulty as you go. Many questions have several correct-looking options where you must pick the BEST answer from a risk-manager's perspective.

What is the CISSP passing score?

700 out of 1000 on a scaled scoring model. Because the CAT exam adapts to your ability, you do not need a fixed percentage correct. The exam ends once it is statistically confident you are above or below the standard, anywhere between 100 and 150 questions.

How long should I study for CISSP?

Most candidates with some security background study 3 to 6 months. Plan to cover all 8 domains, work through a question bank of 2,000+ items, and review weak domains. Treat this cheat sheet as a final-weeks consolidation tool, not your primary study source.

ExamCert
ExamCert TeamCertified cloud & security pros helping you pass faster.