0

所以我想在我的网站上使用闪存驱动器作为 2FA 的选项(使用设备序列号)。我正在使用 WebUSB,但闪存驱动器不会显示在设备选择窗口中。我已经看到网络 USB 无法读取/写入文件,那么它甚至可以看到闪存驱动器吗?

如果有帮助,这是我的代码:

console.log("test");
 usbLookup.addEventListener('click', function() {
 navigator.usb.requestDevice({ filters: [{ }] })
.then(device => {
  console.log(device.serialNumber);      
 
})
.catch(error => { console.log(error); });
});
<iframe allowpaymentrequest allow='usb'></iframe>

<a id="usbLookup">Get Serial</a>

4

1 回答 1

0

在某些平台上,WebUSB 由于其实现方式的特殊性而无法看到闪存驱动器。

一般来说,这是一个糟糕的第二个因素,因为序列号很容易被猜测和伪造。我建议改用WebAuthn API,它提供对来自多个供应商的真正安全令牌的支持。

于 2018-04-30T15:46:04.870 回答