Question

Difficulty: MediumPassword Security Policies, MFA, and Certificates

An organization is updating its infrastructure access control policies and mandates Multi-Factor Authentication (MFA) for administrative SSH connections to all core routers. Which combination of credentials satisfies true Multi-Factor Authentication by employing two distinct authentication factor categories?

  1. A static user password combined with a time-based one-time password (TOTP) generated by a physical keyfob tokenAnswer
  2. B
    A domain user account password combined with an enable secret passphrase and a security PIN
  3. C
    A fingerprint scan combined with a high-resolution retina scan
  4. D
    A mobile app push notification approval combined with an SMS verification code sent to the same smartphone

Answer

A static user password combined with a time-based one-time password (TOTP) generated by a physical keyfob token
Multi-Factor Authentication (MFA) requires using credentials from at least two distinct authentication categories: Knowledge (something you know, like a password), Possession (something you have, like a physical hardware token), and Inherence (something you are, like biometric scans). Pairing a standard password with a hardware-generated TOTP code combines a knowledge factor with a possession factor.

Step-by-Step Solution

1
Categorize the underlying factor types for authenticating users
Authentication factors are grouped into three primary categories: Knowledge (something you know), Possession (something you have), and Inherence (something you are).
True Multi-Factor Authentication requires combining at least two credentials from different categories.
2
Evaluate the credential pair containing a static password and a physical keyfob TOTP token
The static password is a knowledge factor and the physical token is a possession factor.
Combining knowledge and possession satisfies the requirement for multi-factor authentication.

Key Concept

Authentication Factor Categorization (Knowledge, Possession, Inherence)
Rate this question