FIDO U2F tokens Web Browsers compatibilty

前端 未结 4 1283
别跟我提以往
别跟我提以往 2021-02-04 06:58

I\'m trying to integrate U2F Authentication in GWT project and I need to know if is this solution compatible with all new web browsers (Firefox

4条回答
  •  半阙折子戏
    2021-02-04 07:54

    It isn't specifically true that browsers can't add compatibility via extensions as per Michael's post, the issue isn't that it's secure because the browser "directly communicates" - USB can be sniffed so U2F isn't secure in that sense, which is precisely why it has defences against replay attacks.

    The issue relates to browsers not generally having support internally to directly talk to USB devices - or more usefully for extensions to do that (but that would throw up other unrelated security concerns). It's perfectly plausible for a piece of software to act as an intermediary for an extension and pass on authentication events to a FIDO device; I've investigated the possibility and it absolutely would work without harming the security of U2F itself - native browser support would be preferable though.

提交回复
热议问题