CompTIA Security+ - Identity and Access Management

By Jordan Blake · Updated Jul 10, 2026

Questions23
Passing Score75%
Format48% Multiple Choice
Sessions Logged1,661
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.6 out of 5 from 41 ratings.
4.6 (41)

Topics covered

This quiz

Uncategorized23 (100%)

Uncategorized23 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-5974

Question Q-5974 What are the three authentication factors?

2 comments · last active May 23, 2026

  • Ryannerker1079 · Feb 20, 4:55 AM

    Identification vs authentication vs authorization — three different steps. Login is authn; file access is authz.

  • gijoejane · May 23, 7:59 PM

    Accountability = auditing who did what after auth. Non-repudiation ties to logging + identity proof.

Q-5989

Question Q-5989 What is the difference between authentication and authorization?

2 comments · last active May 3, 2026

  • duther1 · Feb 1, 10:43 AM

    Account lifecycle: provision → review → modify → deprovision. Orphan accounts = ex-employee still active — huge audit finding.

  • tiemen · May 3, 8:50 AM

    Joiner/mover/leaver automation via HR feed into IAM tool is the 'right' enterprise answer.

Q-5992

Question Q-5992 What is credential stuffing, and which control most effectively prevents…

2 comments · last active Feb 21, 2026

  • millbilliken · Feb 20, 10:01 PM

    Biometrics: false accept vs false reject rates. Multimodal reduces errors but raises privacy issues.

  • lisadaniellee · Feb 21, 12:01 PM

    Something you are = inherence factor. Liveness detection fights photo spoofing.

Q-5983

Question Q-5983 What is federation in the context of identity management?

2 comments · last active Feb 20, 2026

  • nicholaskno · Feb 19, 3:26 PM

    PAP sends creds in cleartext — never use. PEAP/EAP-TLS for enterprise Wi-Fi; certificate-based is strongest.

  • LondonPenPals · Feb 20, 2:26 AM

    802.1X is port-based NAC — supplicant on client, authenticator on AP/switch, RADIUS backend.

Q-5986

Question Q-5986 The ___ model assumes no implicit trust based on network…

2 comments · last active Feb 18, 2026

  • Nutmegh · Feb 17, 10:34 PM

    Privileged access management (PAM): vault admin creds, session record, just-in-time elevation. Break-glass accounts monitored.

  • lsdmeththrowaway · Feb 18, 9:34 PM

    Separation of duties: no one person can approve + pay invoice. Different from least privilege but related.

Q-5995

Question Q-5995 The ___ is a framework for implementing Zero Trust Architecture,…

2 comments · last active Feb 15, 2026

  • CrashPerfectNight · Feb 14, 7:51 AM

    Kerberos: ticket-granting ticket, mutual auth, time sync critical. NTLM is legacy and weaker — know when labs still break.

  • Slavfaka · Feb 15, 9:51 AM

    LDAP directory vs Active Directory — AD extends LDAP for Windows domains. Sec+ loves 'which protocol/port'.

Q-5977

Question Q-5977 Which of the following best describes Role-Based Access Control (RBAC)?

2 comments · last active Feb 10, 2026

  • Roeed97 · Feb 9, 11:38 PM

    RBAC = job function permissions. ABAC = attributes (dept, clearance, device health). ABAC scales but complex.

  • mikibronx · Feb 10, 2:38 PM

    Least privilege applies to both — default deny, grant minimum needed.

Q-5980

Question Q-5980 Kerberos authentication uses tickets rather than passwords being transmitted over…

2 comments · last active Feb 4, 2026

  • Vercingetorisk · Feb 3, 9:21 PM

    Federation: trust between orgs/IdPs. SAML assertions vs OIDC JWTs — know which is XML-heavy vs JSON/API era.

    +2 votes
  • heyaqualung · Feb 4, 5:21 PM

    IdP authenticates; SP consumes assertion. User doesn't get a password on every SaaS app.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

?? Multiple Choice (Hard)

Which attack exploits the implicit trust in Single Sign-On by stealing a valid authentication token?

Answer choices

  • A. Credential stuffing

  • B. Pass-the-ticket / Golden Ticket attack (Correct)

  • C. Privilege escalation

  • D. SQL injection for credential harvesting

Explanation

In Active Directory environments using Kerberos, a Golden Ticket attack forges Kerberos TGTs using the KRBTGT account hash (extracted from a Domain Controller). With a Golden Ticket, attackers can impersonate any user with any privileges for up to 10 years. Mitigation: regularly rotate KRBTGT password, monitor for unusual Kerberos tickets.

Question 2

?? Multiple Choice (Medium)

What is federation in the context of identity management?

Answer choices

  • A. Combining multiple user directories into one unified database

  • B. Establishing trust relationships between identity providers across different organizations (Correct)

  • C. Federating all authentication to a single cloud provider

  • D. Merging user accounts after corporate acquisitions

Explanation

Identity federation allows users to use credentials from one organization (identity provider) to access resources in another organization (service provider/relying party). Protocols: SAML 2.0 (enterprise federation), OpenID Connect (consumer), WS-Federation. Example: using your university credentials to access a partner organization's resources.

Question 3

?? True/False (Medium)

Time-based One-Time Passwords (TOTP) rely on a shared secret and the current time to generate authentication codes valid for about 30 seconds.

Answer choices

  • A. True (Correct)

  • B. False

Explanation

TOTP (RFC 6238) generates a 6-digit code based on: shared secret + current Unix time (rounded to 30-second window). Both client app (Google Authenticator, Authy) and server compute the same code independently. Codes expire every 30 seconds. TOTP is a "something you have" factor (authenticator app on phone).

Question 4

?? Fill in the Blank (Easy)

The principle of [[blank1]] access ensures that users are only granted the minimum permissions necessary to perform their job functions.

Explanation

Least privilege (also called minimum necessary access) is a core security principle. Users, processes, and systems should have only the permissions required for their specific tasks. This limits the damage from compromised accounts, insider threats, and malware. Combined with need-to-know (access to information required for job), it minimizes attack surface.

Question 5

?? True/False (Hard)

Separation of duties requires that no single individual has complete control over any critical process or transaction.

Answer choices

  • A. True (Correct)

  • B. False

Explanation

Separation of duties (SoD) prevents fraud and errors by dividing critical tasks among multiple people. Example: the person who creates vendor accounts cannot also process payments. In IT: developers cannot deploy directly to production; no single admin has both backup and restore rights. This limits insider threat risk and enforces accountability.