Last active
November 4, 2017 18:19
-
-
Save coconut49/5cccf1545f4e3664124568456f3fba39 to your computer and use it in GitHub Desktop.
a tiny script to auto lock and unlock gnome session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUBSYSTEM=="usb", ACTION=="remove", ENV{ID_VENDOR_ID}=="1050", ENV{ID_MODEL_ID}="0407", RUN+="/usr/local/bin/yubikeylocker.sh" | |
SUBSYSTEM=="usb", ACTION=="add", ENV{ID_VENDOR_ID}=="1050", ENV{ID_MODEL_ID}=="0407", RUN+="/usr/local/bin/yubikeylocker.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
YUBIKEYID="1234456" | |
YUBIKEY_CHAL="XXXX" | |
YUBIKEY_CHALRESP="XXXXXXXXXXXXXXXXXXXXXXXXXXXX" | |
result=$(lsusb | grep -e "Yubikey") | |
yubikeyid=$(ykinfo -q -s) | |
if $result || [ "$yubikeyid" != $YUBIKEYID ];then | |
{ | |
# multi check for 2 yubikeys, I have 4mini and 4. | |
echo "yubikey not found, locking screen now" | |
loginctl lock-sessions --no-ask-password | |
} | |
else | |
{ | |
echo "yubikey found, now making a challenge" | |
yubikeyresp=$(ykchalresp -2 $YUBIKEY_CHAL) | |
if [ "$yubikeyresp" == $YUBIKEY_CHALRESP ];then | |
{ | |
echo "verfied" | |
loginctl unlock-sessions --no-ask-password | |
} | |
else | |
{ | |
echo "failed, it's not my yubikey" | |
} | |
fi | |
} | |
fi | |
# ref https://www.dalemacartney.com/2013/01/14/locking-and-unlocking-the-gnome3-session-with-a-yubikey/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment