aboutsummaryrefslogtreecommitdiff
path: root/hasyubi
diff options
context:
space:
mode:
authorMarvin Borner2023-03-24 10:55:58 +0100
committerMarvin Borner2023-03-24 10:55:58 +0100
commit921eaa2fceaa132585ef3a2e7b35379e8ea0856f (patch)
tree97d159d5a9adba4e2406b4a6edc794a9ebb479e3 /hasyubi
parent1562aad7d4e1b24d8191de892f2d216ee0f6de7b (diff)
Better hasyubi
Diffstat (limited to 'hasyubi')
-rwxr-xr-xhasyubi23
1 files changed, 16 insertions, 7 deletions
diff --git a/hasyubi b/hasyubi
index 95fe37b..f3582db 100755
--- a/hasyubi
+++ b/hasyubi
@@ -1,13 +1,22 @@
-#!/bin/env sh
+#!/bin/env bash
-# WARNING: This (obiously) isn't a replacement for normal challenge-response verification.
# This only serves as an additional security measure IF YOU ALREADY TRUST YOUR ENVIRONMENT
+# choose one or more verification methods (TOTP is great obviously)
+set -e
+
+# serial verification
SERIAL="YOURSERIAL"
connected=$(ykman list --serials 2>/dev/null)
+[ "$connected" = "$SERIAL" ] || exit 1
+
+# TOTP verification
+TOTPKEY="YOURTOTPKEY"
+key=$(oathtool -b "$TOTPKEY" --totp=SHA1)
+gen=$(ykman oath accounts code linux | awk '{print $2}')
+exit $([ "$key" = "$gen" ])
-if [ "$connected" = "$SERIAL" ]; then
- exit 0
-else
- exit 1
-fi
+# stored public key verification
+# PUBKEY="YOURPUBLICKEYPATH"
+# pub=$(yubico-piv-tool -aread-cert -s9a -KSSH)
+# cmp -s <(echo "$pub") <(awk '{ print $1 " " $2 }' <$PUBKEY) || exit 1