My fresh new Yubikey times out sometimes when queried for its serial. I would say this happens about 50% of the time or more:
whence@test:~$ for i in $(seq 1 10); do ykinfo -s; sleep 1; done serial: 1234567 serial: 1234567 Yubikey core error: timeout serial: 1234567 Yubikey core error: timeout Yubikey core error: timeout Yubikey core error: timeout serial: 1234567 Yubikey core error: timeout Yubikey core error: timeout
This is a big deal to me because it makes the HMAC challenge mode unusable: I have to re-enter my password many times before getting logged in (in 2FA mode).
Yubikey fw version: 2.4.2 ykpersonalize version: 1.14.1
Interestingly, when I strace ykinfo, the bug disappears:
whence@test:~$ for i in $(seq 1 10); do strace ykinfo -s 2>/dev/null; sleep 1; done serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567 serial: 1234567
Last edited by whence on Mon Oct 13, 2014 2:50 pm, edited 1 time in total.
|