📍 3. Authentication Methods Comparison › 📑 Table of Contents
⚠️ MFA Factor Rule
Multi-factor MUST use different factor TYPES.
Two passwords = two-step verification, NOT MFA. Two biometrics from the same modality = still one factor.
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 1 — Two-Factor vs. Two-Step
"Two passwords" is two-step, NOT MFA.
MFA requires two different factor TYPES (know + have, know + are, have + are).
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 2 — FAR vs. FRR
FAR (False Accept Rate = Type II) is the security-critical metric — it measures how often impostors are let in.
A system with low FAR is secure. FRR (False Reject Rate = Type I) is the usability impact — how often legitimate users are rejected. CER = where FAR and FRR are equal.
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 3 — Encryption vs. Salting
Salting defeats rainbow tables.
Encryption does NOT defeat rainbow tables. Hashing with a salt makes pre-computed tables impractical.
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 4 — SAML vs. SCIM vs. OIDC
SAML = authentication assertion (SSO).
OIDC = authentication layer on OAuth 2.0. SCIM = provisioning (account creation/sync). OAuth 2.0 = authorization delegation (not authentication).
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 5 — DAC vs. MAC Confusion
DAC = owner controls access (flexible, weaker security).
MAC = system controls based on labels (rigid, higher security). When you see "labels, clearances, classification levels, military" → MAC. When you see "owner sets permissions, ACL" → DAC.
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 6 — Golden vs. Silver Ticket
Golden Ticket uses KRBTGT hash = domain-wide access.
Silver Ticket uses a service account hash = access only to that service. Silver is stealthier (no KDC contact).
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 7 — RADIUS vs. TACACS+
RADIUS uses UDP and encrypts only the password.
TACACS+ uses TCP and encrypts the ENTIRE payload. TACACS+ separates Authentication, Authorization, Accounting into separate functions. RADIUS combines A+A.
📍 7. Common Exam Traps › 📑 Table of Contents
⚠️ Trap 8 — Zero Trust "Zero"
Zero Trust does NOT mean zero security.
It means zero IMPLICIT trust — explicit, verified trust at every access request. The word "zero" refers to not granting any trust by default.