← Physical Security Engineering Studio
Concept Explainer · Physical Security

Something You Have, Know & Are

Why combining different factor types — not just adding a second credential of the same type — is what actually makes multi-factor authentication stronger.

"Two-factor" gets used loosely to mean "two credentials," but that's not what makes multi-factor authentication genuinely stronger. There are three fundamentally different categories of authentication factor — something you have, something you know, and something you are — and each one fails in a completely different way. The security benefit of "multi-factor" comes specifically from forcing an attacker to defeat several of those different failure modes at once. Requiring two credentials from the samecategory doesn't do that, even when it's marketed as two-factor.

The Setup

Three categories, three different ways to fail

Something you have (possession) is a physical item — an access card or badge, a key fob, a hardware token. Its security depends entirely on that item staying in the legitimate holder's physical possession. Its weakness is physical: the item can be lost, stolen, or — for some card technologies — cloned. Whoever ends up holding it (or a copy of it) can authenticate as if they were the legitimate holder.

Something you know (knowledge) is memorized information — a PIN, a password. Its security depends on that information staying secret, known only to the legitimate person. Its weakness is informational: it can be observed (shoulder-surfed while it's entered), guessed (weak or common PINs), or otherwise discovered and shared. Anyone who learns it can authenticate — without touching, holding, or stealing anything physical at all.

Something you are(inherence/biometric) is a measurable characteristic of the person's own body — a fingerprint, a face, an iris. Its security depends on that characteristic being difficult to replicate or spoof, and being tied specifically to that individual's actual physical body rather than to an object that can be handed over or a secret that can be told to someone else. Biometrics can potentially be spoofed with enough effort and the right materials, but this is generally a much higher bar than stealing a card or overhearing a PIN.

Genuine multi-factor: card (have) + PIN (know)

Two different failure modes
ACCESS POINTcard reader1 2 34 5 6PIN keypadrequires BOTH to unlocklegitimate holdercard ✓PIN ✓✓ access granted — both presentattacker Astole the cardcard ✓no PIN ✗✗ attacker B — saw the PIN, has no card — deniedstealing the card doesn't reveal the PIN; observing the PIN doesn't hand over the card
Attacker with the stolen card
still denied
Possessing the card reveals nothing about the memorized PIN.
Attacker who observed the PIN
still denied
Knowing the PIN doesn't put the physical card in their pocket.

Same factor type, twice: not genuine multi-factor

Now compare that to an access point that requires two different memorized PIN codes instead. It looks like "two credentials," but both credentials belong to the exact same factor category — something you know — which means both share the exact same vulnerability: they can be observed. An attacker positioned to shoulder-surf one PIN being typed in is, in almost every real layout, also positioned to watch the second PIN entered right after it. Defeating the first instance of the vulnerability doesn't require a different attack at all for the second — it's the identical attack, repeated.

False "two-factor": PIN + PIN (know + know)

Same failure mode twice
ACCESS POINTPIN 1 keypad1 2 3 · 4 5 6PIN 2 keypad1 2 3 · 4 5 6legitimate usertypes PIN 1, then PIN 2shoulder-surfersame vantage pointobserves PIN 1 AND PIN 2 — one vulnerability, exploited twice✗ both PINs compromised — no genuinely different failure mode requiredtwo credentials, but only one attack skill: watch someone type
Factor types required
know + know (same type)
Two credentials, but both are memorized secrets vulnerable to observation.
Genuine security benefit
not equivalent to true MFA
One observation skill defeats both — no genuinely different failure mode is required.
Why this works

Strength comes from forcing multiple, genuinely different failure modes — not from counting credentials

Each factor category has its own distinct weakness: possession can be stolen or cloned, knowledge can be observed or guessed, and biometrics can potentially be spoofed — though that generally requires far more effort than the other two. Genuine multi-factor authentication strength comes from requiring an attacker to defeat several of these different failure modes at once. Stealing a card doesn't also reveal a memorized PIN. Watching someone type a PIN doesn't also hand you their fingerprint. That's exactly why real MFA standards and best practices require combining different factor categories — have + know, or have + are, for example — rather than simply requiring a second credential of whatever type is convenient.

Common misconception
"Requiring two credentials of any kind — even two passwords, or two access cards — provides essentially the same 'two-factor' security benefit as combining genuinely different factor types."

False, or at best badly incomplete. Requiring two credentials of the same factor type — two memorized PINs, or two physical cards — means an attacker who successfully defeats one instance of that factor type's specific vulnerability is often well-positioned to defeat the second instance of that identical vulnerability too. Someone who can shoulder-surf one PIN can usually shoulder-surf the next one entered right after it. Someone who can steal or clone one card usually has the same access to a second card kept in the same place. Genuine multi-factor security strength comes specifically from requiring an attacker to defeat multiple, genuinely different failure modes — possession theft, knowledge observation, and/or biometric spoofing — simultaneously. That is exactly why real multi-factor authentication standards and best practices require combining different factor categories, not simply requiring more credentials of the identical type.

Related Concept Explainers
Mantraps vs. Turnstiles
Read it →
REX vs. Door Position Switch
Read it →

Something You Have, Know & Are — Concept Explainer

Explains the three fundamental categories of authentication factor — possession (something you have), knowledge (something you know), and inherence (something you are) — and why genuine multi-factor authentication strength comes from combining different factor types, each with a distinct failure mode, rather than simply requiring two credentials of the same type.

The Three Factor Categories

Something you have (possession) is a physical item — an access card, key fob, or hardware token — whose security depends on it staying in the legitimate holder's physical possession; its weakness is that it can be lost, stolen, or (for some technologies) cloned.

Something you know (knowledge) is memorized information — a PIN or password — whose security depends on it remaining secret; its weakness is that it can be observed (shoulder-surfed), guessed, or otherwise discovered, without the attacker needing to possess anything physical.

Something you are (inherence/biometric) is a measurable physical characteristic — a fingerprint, face, or iris — whose security depends on being difficult to replicate and tied specifically to the individual's own body, rather than something that can be handed over or told to someone else.

Why Combining Different Types Is What Matters

Each factor category fails in a genuinely different way: possession can be stolen, knowledge can be observed or guessed, and biometrics can potentially be spoofed with significant effort. Real multi-factor authentication strength comes from forcing an attacker to defeat several of these different failure modes at the same time — stealing a card doesn't also reveal a memorized PIN, and observing a PIN doesn't also give an attacker someone's fingerprint. This is why authentication standards specifically define MFA as combining different factor categories, not simply stacking more credentials.

Why Two Credentials of the Same Type Falls Short

Requiring two PINs, or two physical cards, does not provide the same benefit, because both credentials in the pair share the identical vulnerability. An attacker positioned to shoulder-surf one PIN being entered is almost always also positioned to observe the second PIN entered right afterward — it is the same attack, executed twice, not two genuinely different attacks. The same logic applies to two possession-factor credentials stored or carried together: compromising access to one often means access to the other as well.

Applying This in Access Control Design

A door requiring both a card and a PIN forces an attacker who steals the card to still separately learn the PIN, and forces an attacker who learns the PIN to still separately obtain the card — two genuinely different attacks. A door requiring a card plus a biometric scan forces a stolen-card attacker to also spoof a biometric, a materially harder task than guessing or observing a second knowledge factor. Specifying "two credentials" without checking that they come from different factor categories is a common design gap that looks like MFA on paper without delivering its actual security benefit.

Frequently asked questions

Is requiring a card plus a PIN considered genuine two-factor authentication?

Yes. A card is a possession factor (something you have) and a PIN is a knowledge factor (something you know) — two different categories with two different failure modes. An attacker must both obtain the physical card and learn the PIN, which are unrelated tasks requiring different attack methods.

Is requiring two different PIN codes considered genuine two-factor authentication?

No, even though it involves two separate credentials. Both PINs are knowledge factors, so both share the same vulnerability: they can be observed or guessed. An attacker able to shoulder-surf one PIN being entered is typically able to observe the second one entered immediately after, meaning one attack skill compromises both credentials rather than requiring two genuinely different attacks.

Can biometrics be spoofed, and does that make them a weak factor?

Biometric characteristics can potentially be spoofed with sufficiently sophisticated materials and effort (fabricated fingerprints, photos or masks for facial recognition, for example), but this generally requires far more resources, skill, and targeted effort than stealing a card or overhearing a PIN. That relative difficulty is why biometrics are still considered a strong, distinct factor category, and why anti-spoofing measures like liveness detection exist specifically to raise that bar further.

Why do security standards specifically require different factor categories rather than just counting credentials?

Because the actual security benefit of multi-factor authentication is forcing an attacker to defeat multiple, independent failure modes. If two credentials share the same failure mode, defeating one often gets an attacker most of the way to defeating the other, which undermines the entire premise of requiring "more than one factor" in the first place. Standards define factors by category specifically to close that loophole.

Does adding a third factor of a type already used still help?

Adding a second credential of an already-used category (a second PIN alongside an existing card-plus-PIN setup, for example) provides only marginal benefit compared to adding a genuinely new category (a biometric scan), because the new PIN still shares its core vulnerability — observability — with the first one. The stronger design choice is almost always adding a different factor category rather than stacking another instance of one already in use.

🎓

Try our Physical Security Studio

More calculators, simulators, and guides for this discipline.

Related tools & guides

Mantraps vs. Turnstiles — Concept ExplainerAccess Control System DesignerAccess Control Systems HandbookREX vs. Door Position Switch — Concept Explainer