SaveMyCert
Cloud basics

What is multi-factor authentication (MFA)?

Multi-factor authentication (MFA) is a login method that requires two or more different types of proof before granting access, rather than a password alone. The point is “different types”: a password plus a second password proves nothing extra, but a password plus a one-time code from your phone forces an attacker to steal two fundamentally different things at once. That single design choice is why MFA is consistently rated one of the highest-value security controls anyone can turn on, and why cloud providers push it hard for the accounts that matter most.

The three factor categories

Security people group proof of identity into three categories, and MFA only counts when it combines proof from at least two of them. Something you know is a password or PIN — information stored in your memory. Something you have is a physical item — a phone receiving a code, a hardware security key, an authenticator app installed on a specific device. Something you are is a biometric — a fingerprint or face scan, tied to your body rather than an object or a memory.

Two passwords, or a password plus a security question, are still just “something you know” twice — that is not MFA, however many steps it adds. Real MFA pairs categories: know plus have, or know plus are. That is also why it is sometimes called two-factor authentication (2FA) when exactly two categories are used; MFA is the more general term covering two or more.

Common MFA methods, ranked by strength

Not all “something you have” methods are equally strong, and the differences matter in practice.

  • SMS text codes — convenient and better than a password alone, but the weakest common option: phone numbers can be hijacked via SIM-swapping, and codes can be intercepted or phished.
  • Authenticator apps (generating time-based one-time codes) — the code is generated on the device itself rather than sent over the phone network, closing the SIM-swap gap.
  • Push notifications — the app on your phone shows an “approve this login?” prompt, which is quick but can be defeated if a user is tricked into approving a login they did not request.
  • Hardware security keys — a physical device plugged in or tapped via NFC, generally considered the strongest widely available option because the key material never leaves the device and can’t be phished the way a code can.

Why one control does so much work

Passwords fail constantly — reused across sites, guessed, phished, or leaked in a breach of some unrelated service. Once an attacker has a working password, MFA is the single control standing between them and your account, and it works because stealing a password is comparatively easy while also stealing your phone or your fingerprint is a different, much harder problem. This is why almost every major account-takeover prevention statistic and every serious security framework treats MFA as close to non-negotiable rather than optional hardening.

MFA in the cloud

Every major cloud provider strongly recommends, and often defaults to requiring, MFA on the accounts with the broadest power — the AWS account root user, an Azure or Google Cloud global admin, and any account holding billing or identity-management permissions. Losing control of one of those accounts is far more damaging than losing control of an ordinary user account, so providers treat MFA there as close to mandatory. Our identity and access management explainer covers the broader picture of how identities, permissions and authentication fit together, and enabling MFA is usually step one of putting that model into practice.

MFA is also a natural companion to zero trust security, which assumes no login should be trusted just because it presented a password — every access attempt is verified, and a second factor is one of the most direct ways to add that verification.

Setting up MFA sensibly

For most people, the practical order is: avoid SMS where a better option exists, prefer an authenticator app or a hardware key for anything important, and always record the backup/recovery codes a service offers when you enable MFA — losing your only second factor with no backup is a real way to lock yourself out of your own account. Cloud consoles typically walk you through this in account or security settings, and it takes only a few minutes to enable on an account that may otherwise sit unprotected for years.

Ready to start studying — free?

Original practice questions, timed mock exams and revision notes. No card, nothing to pay.

Jump straight into an exam
CLF-C02SCS-C03CC

Questions, answered

Multi-factor authentication (MFA) means proving who you are with two or more different types of evidence — typically a password plus a code from your phone or a fingerprint — rather than a password alone. Because the two proofs are different types, an attacker who steals just your password still can’t get in.

Sources

Exam details in this post come from the vendor's published exam guide, which is the authority on what is tested and how.

Keep reading

Cloud basics
What is OAuth? Delegated access, explained simply
Cloud basics
What is single sign-on (SSO)?
Cloud basics
What is Snowflake?
Cloud basics
What is SSH? A plain-English explainer