Two-Factor Authentication (2FA)
Two-factor authentication is a way of confirming your identity that requires two separate pieces of evidence before you are granted access, rather than a password alone. For example, you might enter a password and then approve a prompt on your phone. The goal is to make it harder for someone else to get into your account even if they learn your password.
Two-factor authentication (2FA) is an authentication method that requires a principal to present exactly two distinct authentication factors for successful authentication, typically drawn from different factor categories: knowledge (something you know, such as a password), possession (something you have, such as a security key or an OTP-generating device), and inherence (something you are, such as a biometric). 2FA is a specific case of multi-factor authentication (MFA); MFA requires more than one factor, while 2FA requires precisely two. Note that combining two credentials of the same category (for example, two knowledge factors) does not typically satisfy the two-distinct-factor requirement in most deployments. This term concerns authentication only, verifying who a principal is, and does not by itself govern authorization decisions about what the authenticated principal may access.
Why it matters
Passwords alone are a weak basis for authentication because they can be phished, guessed, reused across sites, or exposed in credential dumps. Two-factor authentication addresses this by requiring a second, distinct piece of evidence, so that knowledge of a password is not by itself sufficient to gain access. In most deployments, this raises the cost and complexity for an attacker considerably, because they would need to compromise a possession or inherence factor in addition to the password.
It is important to recognize what 2FA does and does not do. It strengthens authentication, the step of verifying who a principal is, but it does not by itself govern authorization, meaning it does not determine what the authenticated principal is subsequently allowed to access. Its protective strength also depends on the specific factors chosen: combining two factors from different categories (for example, a password and a security key) typically provides meaningfully better assurance than combining two credentials from the same category. The resistance of a given 2FA deployment to phishing and interception varies with the factor type and configuration.
Because 2FA is a specific case of multi-factor authentication that requires precisely two factors, organizations should treat it as a baseline rather than a ceiling. Depending on the risk profile of the resource being protected, some deployments layer additional controls such as step-up authentication or higher-assurance possession factors on top of a basic two-factor scheme.
Who it's relevant to
Inside 2FA
Common questions
Answers to the questions practitioners most commonly ask about 2FA.
