Skip to content

Instantly share code, notes, and snippets.

@mqu
Last active March 4, 2024 01:47
Show Gist options
  • Save mqu/9def140cc4ebe253bc495a71f9afe37d to your computer and use it in GitHub Desktop.
Save mqu/9def140cc4ebe253bc495a71f9afe37d to your computer and use it in GitHub Desktop.
Hypersecu HyperFIDO udev rules for Linux.
sudo bash
cat > /tmp/60-u2f-hyperfido.rules <<EOF
# Hypersecu HyperFIDO
# reload with "udevadm control --reload-rules"
# URL:
# - https://www.hypersecu.com/products/hyperfido ; https://www.hypersecu.com/faq -> HyperFido / Linux
# - https://gist.github.com/mqu/9def140cc4ebe253bc495a71f9afe37d
#
ACTION!="add|change", GOTO="u2f_end"
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="2ccf", ATTRS{idProduct}=="0880|0850|0852|0853|0854|0856|0858|085a|085b", TAG+="uaccess"
LABEL="u2f_end"
EOF
sudo udevadm control --reload-rules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment