aws-cli icon indicating copy to clipboard operation
aws-cli copied to clipboard

U2F Support

Open lrvick opened this issue 6 years ago β€’ 71 comments

Per the AWS blog U2F is now supported for Console login: https://aws.amazon.com/blogs/security/use-yubikey-security-key-sign-into-aws-management-console/

It is especially critical there be a path to support this on the aws-cli so we can tap to perform commands instead of having long lived tokens on disk/memory.

lrvick avatar Sep 26 '18 02:09 lrvick

AFAIK, U2F generally only works in a web browser. How would you expect it to be used from CLI? Fire up a browser?

JensRantil avatar Sep 26 '18 11:09 JensRantil

@JensRantil Nope, any sort of application can interact with a U2F token.

Source: I maintain libu2f-* and pam-u2f in Debian ;)

nbraud avatar Sep 26 '18 12:09 nbraud

Looks like U2F isn't supported for API access yet:

You cannot use MFA-protected API access with U2F security keys.

That said, I've definitely passed this feedback on to the service team. My own experience has been that U2F is 100000x more useable than any other second factor so I'd love to see it even for my own use.

The one caveat is that this would need to be a V2 feature since I'm fairly certain we have to pull in c dependencies to interact with the u2f token.

JordonPhillips avatar Sep 26 '18 16:09 JordonPhillips

@JordonPhillips FYI, there is a Python U2F host library from Yubico; it's itself 100% Python, but depends on hidapi, which IIRC uses libusb and libudev. OTOH, it's already available in all major distros, so that shouldn't be a big deal?

It would also require (like any use of U2F) that the user can interact with the U2F device; Yubico maintains udev rules upstreams in libu2f-host, that I shipped in Debian as libu2f-udev (so they can be installed without pulling in the C library), which is a dependency of task-desktop (starting in Debian 10 β€œbuster”), so most users will have it installed out of the box; in stretch (the current Debian stable), we shipped the udev rules for U2F in the udev package, so it's available there too. TL;DR: Debian should have the right permissions for U2F devices in jessie onwards (released over a year ago), and so should all Debian derivatives (unless they went out of their way to break U2F...)

nbraud avatar Sep 29 '18 22:09 nbraud

This would be hugely helpful for me. Getting out my phone 10-20 times a day to copy TOTPs is not fun. πŸ˜… If I could just tap my Yubikey instead, my aws-cli experience would be so much more pleasant.

jeffparsons avatar Oct 31 '18 00:10 jeffparsons

@nbraud it looks like the python interface they use doesn't provide linux wheels, so installing that would require that the user has a compiler installed. This isn't currently a requirement to install the cli, so adding that library would be a breaking change for many users.

JordonPhillips avatar Oct 31 '18 20:10 JordonPhillips

@JordonPhillips Regarding introducing a breaking change... I can imagine a couple of approaches that would let enthusiastic users benefit from this early without breaking things for less adventurous users:

  1. Make it an optional dependency in v1, and then people who really care about it can compile with a special flag to enable it. In this way they opt in to "previewing" what will eventually be part of the v2 client by default.

  2. Split the U2F piece into a separate binary, and detect its presence at runtime. Then users who attempt to use the AWS CLI with U2F would be told "install this other tool" to make it work. So, on Mac, for example, I would be one brew install aws-cli-u2f away from bliss. πŸ˜ƒ

jeffparsons avatar Nov 01 '18 03:11 jeffparsons

Yeah, I'd be more than happy to install an optional compile-from-source module to get this functionality. It would only be needed on developer machines β€” which would almost always have a compiler already β€” and not on servers anyway.

djrodgerspryor avatar Nov 01 '18 05:11 djrodgerspryor

An alternative to python-u2f-host would be python-fido2 which gets you out from needing the C libraries for USB HID and means you only need the Cryptography library which ships wheels...

jeamland avatar Nov 05 '18 17:11 jeamland

I'll be holding my breath for this πŸ‘

chrislujan avatar Nov 14 '18 23:11 chrislujan

As far as I understand this issue STS/IAM will have to gain API support for security keys as MFA tokens before moving forward with this?

moritzheiber avatar Nov 20 '18 21:11 moritzheiber

As far as I understand this issue STS/IAM will have to gain API support for security keys as MFA tokens before moving forward with this?

Can anyone shed light on this? Surely if it's not already supported then it's just around the corner...?

EDIT:

Please don't let this turn out to be one of those cringeworthy cases where a company assumes none of their customers care about a feature, because they implemented the not-super-useful version and then nobody used it.

I never use the web UI for logging in to the Amazon console. It's all CLI-driven for me, because I have several accounts I need to deal with (etc.). And even if I did use the web UI to log in, then as it stands I'd need to faff about with duplicate accounts of all my existing accounts for use with U2F, because I'd still need to use my old Google/LastPass/whatever authenticator for all aws-cli stuff.

So... AWS's U2F support has the potential to become something that I'd be really enthusiastic about, but without CLI support it's not yet worth touching. I imagine a lot of people are in the same boat.

jeffparsons avatar Jan 02 '19 05:01 jeffparsons

@jeffparsons totally agree U2F MFA for the CLI/SDK is really needed. I bet they would resist doing the libusb/python-fido approach as it does not map well to doing it on the ruby/java ect SDKs. U2F with a one touch challenge response would be pretty universal though.

btw you can switch accounts in the web console very easily by assuming a role on the other account like: https://signin.aws.amazon.com/switchrole?roleName=SomeAdminRole&account=YourAccountNumberOrAlias see: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html

You can then see the role switcher in your user/account dropdown in the upper right of the page

Richard-Mathie avatar Apr 12 '19 08:04 Richard-Mathie

also this guy might be on to something... https://gist.github.com/woowa-hsw0/caa3340e2a7b390dbde81894f73e379d

Richard-Mathie avatar Apr 12 '19 09:04 Richard-Mathie

Here is also a very good solution https://github.com/kreuzwerker/awsu

tbublik avatar Apr 18 '19 08:04 tbublik

Working with multiple mutli-account setups all of them with a separate idp using the same U2F with all of them would be a huge alleviation of toil for me. I would also have no issue to installing/compiling an additional dependency to get this in v1 as a preview.

Any movement on the issues on the aws side of things?

edthamm avatar Jun 01 '19 11:06 edthamm

For what it's worth, aws-vault seems to be fairly close to merging in U2F support: https://github.com/99designs/aws-vault/pull/316

That said, I am absolutely in favor of adding native U2F support to the official AWS CLI tool.

anderiv avatar Jun 12 '19 21:06 anderiv

For what it's worth, aws-vault seems to be fairly close to merging in U2F support: 99designs/aws-vault#316

No that's just creating TOTP tokens using the Yubikey. It's a workaround that allows you to use your Yubikey but it's not U2F.

(This is the same what awsu does, it seems.)

arnuschky avatar Jun 29 '19 08:06 arnuschky

The whole MFA in awscli is a pain to setup and the lack of yubikey support does not help. MFA in 2019 should be a must not a cutting edge feature.

pawelprazak avatar Jul 05 '19 12:07 pawelprazak

Any progress on this?

khebbie avatar Oct 17 '19 10:10 khebbie

just ran into this. Please remove support for Yubikey from the web console if you don't plan to support it in the cli. It's a huge time waster to have to google this stuff and find out AWS does not support what it advertises

cellog avatar Nov 11 '19 18:11 cellog

Pretty ridiculous that this issue has been open for 440 days and not resolved yet.

dissolved avatar Dec 09 '19 18:12 dissolved

CLI support would as previously stated highly appreciated

jandnil avatar Dec 12 '19 09:12 jandnil

Hi, we would like to enforce MFA for all human users with https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_users-self-manage-mfa-and-creds.html (for the lack of a better solution) but now it turns out we either have to:

a) give up on the idea altogether, or b) force everyone to downgrade from using U2F to TOTP.

The fact that IAM does not support multiple MFA devices is a bad joke too...

It's almost year 2020. Convenient and secure (read: U2F) MFA solution is a must, not a luxury in my opinion. Especially in areas where malicious actors can inflict serious financial damage.

AWS, please, please, please, get your act together and work on enhancing your MFA support throughout your ecosystem (CLI, mobile apps, AWS SSO - which does not support U2F too!)

gwynnarth avatar Dec 12 '19 09:12 gwynnarth

The fact that IAM does not support multiple MFA devices is a bad joke too...

This is really embarrassing. Registering only one device is a really bad practice, so come on Amazon, fix this ASAP!

Pretty ridiculous that this issue has been open for 440 days and not resolved yet.

It's worse than that. In 2013 someone from Amazon wrote:

Unfortunately at this time it is only possible to have a single MFA per account. I have however raised this with our development team to be considered as a feature for future development. https://forums.aws.amazon.com/thread.jspa?threadID=137055

stephanvierkant avatar Jan 17 '20 10:01 stephanvierkant

I would understand that the team might be busy or otherwise, but the fact that nobody even bothers to reply to this issue is what concerns me. This isn't some understaffed, underpaid open-source project where this can be excused but AWS itself.

491 days, let's open a champagne on 500! :champagne: :confetti_ball:

Klohto avatar Jan 30 '20 15:01 Klohto

I assume the Amazon is really focused on the GOV projects where the $ is at. This thread is one example of why I usually don't recommend to anyone to use AWS. Sure, there was a time they were cutting edge, but nowadays.. it's just lacking basic features. I know it's out of topic but another example is Route 53 still doesn't support DNSSEC, so here you go. Oh yeah, and MFA should be called SFA because there's no "Multi" in the AWS implementation.

Sorry for the rant but most probably nobody watches this thread except for the security folks who actually want the feature. Just a couple of days till we reach 500 :) !

kiwimato avatar Feb 05 '20 16:02 kiwimato

I would really like this to be added. I find cellphones hugely distracting and would rather not have to pull my phone out multiple times per hour when I'm interacting with AWS services.

calebpalmer avatar Feb 06 '20 14:02 calebpalmer

This was updated a few days ago - https://aws.amazon.com/premiumsupport/knowledge-center/authenticate-mfa-cli/

Does that help anyone?

chris-bateman avatar Feb 11 '20 07:02 chris-bateman

Does that help anyone?

Sadly, no. IMHO that's another problem that AWS needs some complex scripts to use even the token code. I use the 3rd party aws-mfa python script PyPi module to get around that. But thank you for the thought @chris-bateman !

kiwimato avatar Feb 11 '20 08:02 kiwimato