this post was submitted on 16 Oct 2024
173 points (86.8% liked)

Technology

58685 readers
4013 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Badabinski@kbin.earth 5 points 5 hours ago (1 children)

I just don't get why I can't use something like TOTP from my phone or a key fob when logging in with a passkey from my desktop. Why does my second factor have to be an on-device biometrically protected keystore? The sites I'm thinking of currently support TOTP when using passwords, so why can't they support the same thing when using passkeys? I don't want to place all my trust in the security of my keystore. I like that I have to unlock my phone to get a TOTP. Someone would have to compromise my local keystore and my phone, which makes it a better second factor in my opinion.

EDIT: like, at work, I ssh to servers all over the damn place using an ssh key. I have to get to those servers through a jump box that requires me to unlock my phone and provide a biometric second factor before it will allow me through. That's asymmetric cryptography + a second factor of authentication that's still effective even if someone has compromised my machine and has direct access to my private key. That's what I want from passkeys.

[–] EncryptKeeper@lemmy.world 2 points 4 hours ago* (last edited 4 hours ago) (1 children)

I have to get to those servers through a jump box that requires me to unlock my phone and provide a biometric second factor before it will allow me through.

That is also the case with passkeys, if you so choose. Though they are functionally similar to your SSH key, they don’t just allow you to utilize the key just by having it loaded onto your device. When you go to use a passkey you need to authenticate your key upon use, and you can do that biometrically. For example let’s say I have a passkey on my phone which is currently unlocked and in use. If somebody runs over and steals the phone from my hand and prevents it from locking, and then attempts to authenticate to a site using my passkey, they won’t be able to.

[–] Badabinski@kbin.earth 3 points 4 hours ago (1 children)

Right, but I can't require a second factor on a different device that operates outside of my primary device's trust store. I'm sure there is some way to make my desktop hit my phone up directly and ask for fingerprint auth before unlocking the local keystore, but that still depends on the security of my device and my trust store. I don't want the second factor to be totally locked to the device I'm running on. I want the server to say, "oh, cool, here's this passkey. It looks good, but we also need a TOTP from you before you can log in," or "loving the passkey, but I also need you to respond to the push notification we just sent to a different device and prove your identity biometrically over there." I don't want my second factor to be on the same device as my primary factor. I don't know why a passkey (potentially protected by local biometric auth) + a separate server-required second factor (TOTP or push notification to a different device or something) isn't an option.

EDIT: I could make it so a fingerprint would decrypt my SSH key rather than what I have now (i.e. a password). That would effectively be the same number of factors as you're describing for a passkey, and it would not be good enough for my organization's security model, nor would it be good enough for me.

[–] EncryptKeeper@lemmy.world 0 points 4 hours ago* (last edited 4 hours ago)

I mean you don’t have to authenticate your passkey with biometrics, you can use a password.

I guess I’m not really picking up on what the benefit is you’re going for. You already have a What You Have and a What You Know or What You Are, and you want a second What You Also Have thrown in there. I mean, I guess having that as an option couldn’t hurt. but I also don’t think it’s really necessary.

Passkeys are already more secure than what you’re doing now. If what you’re aiming for is for them to be even more secure than that, then that’s an admirable goal. But as of right now they are worth it just for the fact that they’re more secure than existing solutions.