Skip to content
atlas
← Back to the entry

What it is

Multi-factor authentication (MFA) means that logging in requires at least two pieces of evidence from different categories. The password alone is no longer the key to the door; an attacker who steals or guesses it still lacks the second proof.

The idea is old - a bank card plus a PIN is two-factor authentication - and most people in Denmark use MFA every day through MitID: the MitID app on a phone or a code display is something you have, and the app is itself unlocked with something you know or are (a PIN or a fingerprint), while the code display is combined with a password. In an organisation, MFA brings the same protection to email, cloud services, remote access and business systems. It has become one of the most important controls in modern IT security, because stolen passwords are the raw material of so many attacks, and it is one of the few controls the EU’s NIS2 directive mentions by name.

How it works

The three factor categories

Category Description Examples
Something you know A secret held in memory Password, PIN, answer to a security question
Something you have A physical or digital object in your possession Phone with an authenticator app, hardware security key, smart card, code display
Something you are A biometric trait Fingerprint, face recognition

The factors must come from different categories. A password plus a security question is still just two things you know - if one leaks through a phishing site, the other usually leaks with it.

Biometrics in everyday devices are usually used locally: your fingerprint unlocks a key stored on your phone, and it is that key which proves your identity to the service. The fingerprint itself is not sent anywhere.

Not all MFA is equally strong

The US NIST guidelines on digital identity (SP 800-63B) and security agencies in many countries distinguish sharply between different kinds of second factor. Roughly from weakest to strongest:

  1. SMS or voice codes. Better than nothing, but codes can be intercepted through SIM swapping (an attacker persuades a mobile operator to move your number to their SIM card) and - crucially - a user can be tricked into typing the code into a fake website. NIST treats SMS as a “restricted” authenticator that organisations should only use with awareness of its risks.
  2. One-time codes from an app (TOTP), the six-digit codes that change every 30 seconds. They avoid the phone network, but can still be phished: a fake login page simply asks for the code and relays it in real time.
  3. Push notifications (“Approve this sign-in?”). Convenient, but vulnerable to push fatigue (also called MFA bombing): the attacker, who already has the password, triggers prompt after prompt - often late at night - until the tired or confused user taps “Approve”. Mitigations include number matching, where the user must type a number shown on the login screen, and showing the location and application of the request.
  4. Phishing-resistant MFA, such as FIDO2/WebAuthn security keys and passkeys, or smart cards. Here the cryptographic proof is bound to the genuine website’s address. A look-alike domain simply does not receive a valid answer, so there is no code for the user to give away. This removes the human judgement call from the most common attack.

Modern phishing kits often work as an adversary-in-the-middle: they sit between the user and the real login page, pass everything through, and capture both password and one-time code - or the session cookie that results. This is why the distinction between “MFA” and “phishing-resistant MFA” matters so much.

What it means for an organisation and a coordinator

Common misunderstandings

Atlas is in beta.