From 14b6ab42627228755dfc1c370c800e257e526248 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Thu, 10 Sep 2020 18:20:31 -0400 Subject: [PATCH] Add a simple command-line "authenticator app" for testing --- tests/lib/totp_cli.sh | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 tests/lib/totp_cli.sh diff --git a/tests/lib/totp_cli.sh b/tests/lib/totp_cli.sh new file mode 100755 index 00000000..87110861 --- /dev/null +++ b/tests/lib/totp_cli.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +. $(dirname "0")/totp.sh || exit 1 + +while [ $# -gt 0 ]; do + arg="$1" + shift + if [ "$arg" == "token" ]; then + # our "authenticator app" + # + # get the current token for the secret supplied or if no + # secret given on the command line, from the saved secret in + # /tmp/totp_secret.txt + # + secret_file="/tmp/totp_secret.txt" + + if [ $# -gt 0 ]; then + recalled=false + secret="$1" + shift + + else + recalled=true + echo "Re-using last secret from $secret_file" 1>&2 + secret="$(cat $secret_file)" + if [ $? -ne 0 ]; then + exit 1 + fi + fi + + totp_current_token "$secret" + code=$? + if [ $code -ne 0 ]; then + exit 1 + + elif ! $recalled; then + echo "Storing secret in $secret_file" 1>&2 + touch "$secret_file" || exit 2 + chmod 600 "$secret_file" || exit 3 + echo -n "$secret" > "$secret_file" || exit 4 + fi + + exit 0 + fi +done +