SY0-301 · Question #906
An organization has introduced token-based authentication to system administrators due to risk of password compromise. The tokens have a set of numbers that automatically change every 30 seconds…
The correct answer is A. TOTP. A token that generates a new numeric code every 30 seconds based on the current time is the defining characteristic of the Time-based One-Time Password (TOTP) standard.
Question
An organization has introduced token-based authentication to system administrators due to risk of password compromise. The tokens have a set of numbers that automatically change every 30 seconds. Which of the following type of authentication mechanism is this?
Options
- ATOTP
- BSmart card
- CCHAP
- DHOTP
How the community answered
(23 responses)- A87% (20)
- B9% (2)
- D4% (1)
Why each option
A token that generates a new numeric code every 30 seconds based on the current time is the defining characteristic of the Time-based One-Time Password (TOTP) standard.
TOTP (RFC 6238) generates one-time passwords by combining a shared secret key with the current Unix timestamp, producing a code that changes at a fixed interval - typically every 30 seconds. This time-synchronization mechanism ensures codes are short-lived and cannot be reused, directly mitigating password replay attacks. Authenticator apps like Google Authenticator and Microsoft Authenticator implement TOTP.
Smart cards are physical hardware tokens that store static cryptographic credentials or certificates; they do not generate time-based rotating numeric codes.
CHAP (Challenge Handshake Authentication Protocol) is a challenge-response protocol used for point-to-point authentication, not a time-based token system.
HOTP (HMAC-based One-Time Password, RFC 4226) generates codes based on an incrementing counter (event-based), not the current time, so codes do not automatically change on a fixed time interval.
Concept tested: Time-based One-Time Password (TOTP) authentication
Source: https://datatracker.ietf.org/doc/html/rfc6238
Topics
Community Discussion
No community discussion yet for this question.