Google Authenticator
Google Authenticator is a two-step verification software token supporting TOTP and HOTP, used for Google's authentication services. The algorithms used by this service are specified in RFC 6238 and RFC 4226.
Google Authenticator provides users with a six- to eight-digit one-time password for additional verification when logging into Google or other sites. It can also generate tokens for third-party applications, such as password managers or cloud storage services.
1. Installation and Usage
-
Software installation
a. Binary installation
yum install -y epel-* mercurial autoconf automake libtool pam-develyum install -y google-authenticatorb. Compilation installation
yum install -y epel-* mercurial autoconf automake libtool pam-devel gitgit clone https://github.com/google/google-authenticator-libpam.gitcd google-authenticator-libpam-master/ # Enter the directorychmod +x bootstrap.sh # Set executable permissions./bootstrap.sh./configuremake installln -s /usr/local/lib/security/pam_google_authenticator.so /usr/lib64/security/pam_google_authenticator.so -
PAM configuration
vim /etc/pam.d/sshdauth required pam_google_authenticator.so# Orecho "auth required pam_google_authenticator.so" >>/etc/pam.d/sshd -
SSH configuration
vim /etc/ssh/sshd_config# ChangeChallengeResponseAuthentication no# ToChallengeResponseAuthentication yes# Orsed -i 's/ChallengeResponseAuthentication no/ChallengeResponseAuthentication yes/g' /etc/ssh/sshd_config# Restart the sshd servicesystemctl restart sshd.service -
google-authenticator runtime configuration
In general, first run the google-authenticator binary program, then press 'y' throughout the process. During this, use a QR code or a secret key to bind with a mobile device. The specific process is detailed below.
google-authenticatorDo you want authentication tokens to be time-based (y/n) yWarning: pasting the following URL into your browser exposes the OTP secret to Google:https://www.google.com/chart?chs=200x200&chld=M|0&cht=qr&chl=otpauth://totp/root@demo%3Fsecret%3DEXAMPLE_SECRET_DO_NOT_USE%26issuer%3DdemoA QR code will appear here; you need to download the `googleauthenticator` APP on your mobile phone to scan and bind.Both Android and iOS phones can search and install it from the app store.Your new secret key is: EXAMPLE_SECRET_DO_NOT_USEYour verification code is 917990Your emergency scratch codes are:4262331972314571144766959576438938976136Do you want me to update your "/root/.google_authenticator" file? (y/n) yDo you want to disallow multiple uses of the same authenticationtoken? This restricts you to one login about every 30s, but it increasesyour chances to notice or even prevent man-in-the-middle attacks (y/n) yBy default, a new token is generated every 30 seconds by the mobile app.In order to compensate for possible time-skew between the client and the server,we allow an extra token before and after the current time. This allows for atime skew of up to 30 seconds between authentication server and client. If youexperience problems with poor time synchronization, you can increase the windowfrom its default size of 3 permitted codes (one previous code, the currentcode, the next code) to 17 permitted codes (the 8 previous codes, the currentcode, and the 8 next codes). This will permit for a time skew of up to 4 minutesbetween client and server.Do you want to do so? (y/n) yIf the computer that you are logging into isn't hardened against brute-forcelogin attempts, you can enable rate-limiting for the authentication module.By default, this limits attackers to no more than 3 login attempts every 30s.Do you want to enable rate-limiting? (y/n) y -
Login
a. xshell