Questions tagged [yubikey]
92 questions
0
votes
1 answer
Bash program appears to not accept EOF input and instead gets stuck
I wanted to automatize my Mint installation. One major part of my Mint installation is the encryption of the whole disk using a LUKS partition. To be able to unlock my device via my Yubikey I have to run the following line:
yubikey-luks-enroll -d…

133U
- 1
- 1
0
votes
1 answer
Yubico SDK and FIDO Device
I'm writing a client application using yubico.Yubikey SDK in .Net. I'm trying to write a code which can fetch "FEITIAN" USB FIDO device connected to my laptop. Though Yubico and FEITIAN are two different companies, Still it shoul support protocol…

Parshuram
- 1
- 1
0
votes
0 answers
Yubikey shell script, not working any more
Using expect to check/navigate to correct menu and send desired cmd input
After update of Yubikey-manager etc, pin code popup window appears... that make the script to fail
(Default pin are used in this example)
#!/usr/bin/expect -f
set prompt…

Johan
- 1
- 1
0
votes
0 answers
Yubikey smartcard insert/remove notifications
The Powershell code is to find out which USB is communicating with the computer which is working fine.
while ($true) {
If( gwmi win32_diskdrive | where{$_.Interfacetype -eq "USB" } ) {
Start-Sleep -Seconds 1
Write-Host…

saleem
- 1
- 1
- 1
0
votes
0 answers
Assertion failure for WebAuth data with libfido2
I have integrated libfido2 library release dlls in my Windows application which is developed in c# for enrolling and authenticating the user via FIDO device.
So, After enrolling the user I store the publicKey and CredentailId in the database…

Aditya Sharma
- 1
- 1
0
votes
0 answers
Client Certificate Selection at run time and use as a URL Credentials using WKWebView is not working. (NSURLAuthenticationMethodClientCertificate)
func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void)
{
switch…

nirav.25990
- 11
- 3
0
votes
0 answers
Digital Signature Certificate
I've been all around Google and I feel like I've just gone into a deep rabbit hole.
I'm looking to create a Digital Signature certificate (I assume self-signed?). I ran into the method of using certreq -new .\certname.txt by providing simple…

Oort
- 11
- 1
0
votes
1 answer
Use libp11 on Windows environment
I want to install all I need to use libp11 and use libp11.
What is my environment and needs:
I work on Windows 10, 64 bits.
I add package with pacman linux command on my mingw32 terminal (msys64 version of 2022/09/04).
I work on a Qt Creator editor…

GomezJulie
- 1
- 1
0
votes
0 answers
Integration of YubiKey with Yocto
I am trying to integrate YubiKey (YubiKey 5 NFC) with Yocto. I have successfully built and added "pam-u2f" from github repo (https://github.com/Yubico/pam-u2f#building).
After when I try to execute $pamu2fcfg > ~/.config/Yubico/u2f_keys command my…

Poornesh
- 1
0
votes
1 answer
Yubikey OTP Programming Issue with AccessCode
I am building a web application in C# to program Slot1 on a YubiKey for OTP. I am successfully able to program the key unless the configuration has been protected. The serial number was used to protect Slot1's configuration, but whenever I try to…

Dennis Robare
- 3
- 1
0
votes
1 answer
How to tell which application my Yubikey is using?
According to Yubico, the Yubikey 5 supports many different "applications": OTP, OATH, PIV, and FIDO/U2F to name the main ones.
My question is... how do I know which one my Yubikey is using for a given website?
For example, say I register my key to…

Gillespie
- 5,780
- 3
- 32
- 54
0
votes
1 answer
Yubikey PIV: Enforce PIN complexity
im trying to enforce PIN complexity for PIV certificates.
The PIV Manager (which as i understand is no longer under developement) had an option to enforce this, but the YubiKey Manger does not have such an option afaik.
So im forced to use the PIV…

Capit1
- 1
0
votes
2 answers
Can we store and read keys in Fido2 device (yubikey)
I am working on an android and iOS application that needs to have a password-less solution for login. We are trying to implement WebAuthn/Fido2 device.
The problem is that Fido is still new and there is no React-Native library that implements that.…

DevPy
- 439
- 6
- 17
0
votes
2 answers
Howto verify a yubico otp response
I want to use yubico OTP as a second factor in my application.
Yubico OTP documentation: https://developers.yubico.com/OTP/
The following is a c#(.net 6) example which reads the OTP via console (You need to press the button on the usbstick, then the…

Manuel
- 1,985
- 3
- 31
- 51
0
votes
1 answer
How to store AWS secret in yubikey?
Im trying to store AWS access secret key in yubikey,but, as static password in "scan mode", it is not possible to store, because AWS secret exceeds 38 characters.
Now im thinking of way to store AWS secret, as in "official" way they do with SSH -->…

BaronRandom
- 57
- 8