Skip to content
All articles
August 8, 2026 12 min read

Identity & Access Management: MFA, SSO, Federation, and the Principle That Ties Them Together

Chris Rees

Chris Rees

25+ years in IT · Pluralsight author, 4.6/5 across 2,000+ ratings

Identity & Access Management: MFA, SSO, Federation, and the Principle That Ties Them Together
www.skillthropic.com

Attackers stopped breaking in years ago. They log in. Stolen and abused credentials are the single most common way into an organization, which is why identity and access management has quietly become the center of security architecture. Security+ SY0-701 gives it objective 4.6, and the questions are unforgiving about vocabulary: authentication vs. authorization, SAML vs. OAuth, federation vs. SSO. Here's the whole model, sorted.

Three questions, in order

Every access decision answers three questions in sequence, and mixing them up is the most common way to lose marks on this objective:

The AAA sequence: identification claims who you are, authentication proves it, authorization decides what you may do, and accounting records what you did Identification "I am j.taylor" a claim: free to make Authentication prove the claim factors: AuthN Authorization what may you do? permissions: AuthZ Accounting record what happened the audit trail A stem asking "can this user open the file?" is authorization. One asking "is this really that user?" is authentication. Read the verb before you read the answers.
Identification is a claim, authentication is proof, authorization is permission, accounting is the record. The exam tests the boundaries between them constantly.

The factors, and why "multi" matters

Authentication evidence comes in categories, and MFA means combining different ones. Two passwords are not MFA; a password plus a code is.

Factor Means Examples Weakness
Something you know Knowledge password, PIN, security question phishable, reusable, guessable
Something you have Possession token, phone, smart card, passkey theft, SIM swap, push fatigue
Something you are Inherence fingerprint, face, iris can't be revoked if copied
Somewhere you are Location GPS, network, geofence spoofable; a signal, not proof

Two attributes cut across these: something you do (behavioral patterns like typing rhythm) and, more importantly for the exam, the distinction between an authentication factor and an attribute: location and behavior are typically used as risk signals feeding adaptive identity, not as standalone proof.

Not all MFA is equal, and the exam is starting to care. SMS codes are phishable and vulnerable to SIM swapping. Push notifications invite push fatigue attacks, which number matching exists to blunt. Passkeys and hardware security keys are phishing-resistant because the credential is cryptographically bound to the real domain: a look-alike site simply gets nothing.

SSO and federation: one login, many services

Single sign-on is the user experience; federation is the trust relationship that makes it possible across organizational boundaries. The security argument for both is counterintuitive but strong: fewer passwords means fewer places to phish, one place to enforce MFA, and one switch to flip at termination.

The pieces are always the same. An identity provider (IdP) authenticates the user and vouches for them; a service provider (SP) trusts that vouching instead of running its own login.

Federated login flow: user requests the application, is redirected to the identity provider, authenticates there, and returns with a signed assertion the application trusts User wants the app Identity Provider authenticates · issues token Application the service provider 1 · request the app 2 · redirect to the IdP 3 · authenticate (MFA here) 4 · signed assertion / token: the app never sees the password Trust the signature, not the user's claim. Compromise the IdP and you compromise everything downstream.
The application never handles credentials. It validates a signed assertion. That is the security win, and also why the IdP becomes the crown jewel.

Three protocol names show up constantly, and the exam wants the distinction crisp:

Protocol Purpose Format / note
SAML Federated authentication (enterprise SSO) XML assertions; browser redirects; long-dominant in corporate SSO
OAuth 2.0 Authorization: delegated access to resources Issues access tokens; "let this app read my calendar": not a login protocol
OIDC Authentication layer built on OAuth 2.0 Adds an ID token (JWT); what "Sign in with…" actually uses
LDAP / Kerberos Directory and on-prem authentication Kerberos issues tickets; the backbone of Active Directory domains

The single most tested confusion: OAuth authorizes, OIDC authenticates. If a stem describes granting an app limited access to your data, it's OAuth; if it describes proving who you are to sign in, it's OIDC.

Federation also concentrates risk in a way worth stating plainly. Centralizing authentication is a security gain (one place to enforce MFA, one place to revoke) but it makes the IdP a single point of catastrophic failure. An attacker who compromises the identity provider, or who can forge the tokens it signs, inherits every application that trusts it, and does so as a legitimate user with valid sessions. That's why IdP admin accounts get the strongest available controls, why token-signing keys belong in hardware, and why anomalous sign-in monitoring is a required control rather than a nice-to-have.

What credential attacks actually look like

The vocabulary lands better once you've walked an attack through it. Security+ names these families, and they chain naturally:

  • Credential stuffing: reusing leaked pairs elsewhere. Cheap, automated, and effective precisely because people reuse passwords.
  • Password spraying: one common password against thousands of accounts, deliberately slow enough to evade lockout.
  • Brute force and offline cracking: feasible against stolen hashes, which is why salted, slow hashing matters.
  • Push fatigue / MFA bombing: repeated prompts until someone approves to make it stop.
  • Session hijacking / token theft, the post-MFA bypass: steal the session and the login is irrelevant.

Chain them and you get the modern intrusion: a password sprayed from a breach corpus succeeds on a service account, MFA prompts are approved out of annoyance, and a stolen session token keeps access alive after the password is finally rotated. Notice which controls actually break that chain: phishing-resistant factors stop step one and two, and short session lifetimes plus token binding blunt step three. Password complexity rules stop none of it, which is exactly why current guidance favors length, screening against known-breached passwords, and MFA over forced periodic rotation.

Access control models: how permissions get decided

Once identity is established, a model decides what it unlocks. Know all five by their deciding factor:

  • RBAC: permissions follow job roles. The workhorse of enterprise IT, and the easiest to audit.
  • ABAC: decisions evaluate attributes and context (department + device + time + sensitivity). Most flexible, most complex.
  • DAC: the owner of a file decides who may read it. Flexible; drifts badly at scale.
  • MAC: labels and clearances enforced by the system, not the owner. Government and military contexts.
  • Rule-based: access governed by system-wide rules (time-of-day windows, ACLs on a firewall), independent of identity.

Two principles govern all of them. Least privilege grants the minimum needed for the job; separation of duties ensures no single person can complete a sensitive process alone. The failure mode the exam loves is privilege creep: someone moves teams four times in six years and keeps every permission they ever had. Periodic access reviews and recertification are the answer.

The lifecycle, and the privileged edge case

Identity is not a one-time event. It's a lifecycle: provisioning (create the account, grant baseline access), changes (adjust as the role changes, and remove what's no longer needed), and deprovisioning (disable promptly at termination). Automating deprovisioning matters more than it sounds: orphaned accounts belonging to people who left are among the quietest paths into a network, because nobody is watching an account nobody uses.

Two account types deserve their own handling. Service accounts authenticate machines to machines. They rarely rotate, often hold broad rights, and can't answer an MFA prompt, which makes them a favorite target; the modern answer is workload identity and short-lived credentials rather than a permanent password in a config file. Guest and third-party accounts extend your trust boundary to another organization, so they need expiry dates by default, not indefinite access granted during one project in 2023.

Administrative accounts get their own discipline, because the blast radius is categorically different. PAM adds four things worth naming individually: credential vaulting, so admins check out a password they never actually know; just-in-time elevation, so rights exist for a window rather than permanently; ephemeral accounts, created for a task and destroyed after; and session recording, so privileged activity leaves reviewable evidence.

The underlying idea is the one the exam rewards: standing privilege is the risk. An admin account that holds domain rights 24/7 is a target every hour of every day; one that holds them for a 30-minute approved window is a target for 30 minutes and leaves an audit trail when it does. Pair that with separate admin identities (never administering from the account you read email with) and the most valuable credentials in your environment stop being permanently available to whoever phishes their owner.

Key takeaways

  • Identification → authentication → authorization → accounting. Read the verb in the stem to spot which one is being tested.
  • MFA means different factor categories: know/have/are/where. Passkeys and security keys are phishing-resistant; SMS and push are not.
  • SSO is the experience, federation is the trust. The IdP authenticates and signs an assertion; the app trusts the signature, never the password.
  • OAuth authorizes, OIDC authenticates, SAML is enterprise federated SSO, Kerberos issues tickets on-prem.
  • RBAC/ABAC/DAC/MAC/rule-based decide permissions; least privilege and separation of duties govern them, and privilege creep is the recurring failure.

IAM sits in Security+ Domain 4: Security Operations, 28% of the exam and the largest domain on the test. It also underpins Zero Trust, where identity replaces the network as the perimeter, and leans on the certificates and key material that make signed assertions trustworthy. Work all nine objectives with our Security+ Domain 4 study guide.

#SecurityPlus #SY0701 #IAM #MFA #SSO #Federation #OAuth #OIDC #SAML #ZeroTrust #CompTIA #CyberSecurity

Share this article

Keep reading

Enjoyed this? Get the AI security news that matters.

Join The AI Security Brief for the top AI security news, plus what's important to the C-suite. Free, straight to your inbox.

No spam. Unsubscribe anytime.

Security+ Domain 4 · 28% of the exam

This is the biggest domain on your exam

Security Operations is 28% of Security+, more than any other domain. Master all 9 objectives, from hardening to incident response, with our Domain 4 guide.

Get the Domain 4 guide