1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

yubikey token must be > 40 in length too

This commit is contained in:
Kyle Spearrin
2019-07-06 22:09:20 -04:00
parent eca4777b99
commit 65725b5a38

View File

@@ -56,7 +56,8 @@ namespace Bit.App.Pages
if(message.Command == "gotYubiKeyOTP")
{
var token = (string)message.Data;
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) && !token.Contains(" "))
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) &&
token.Length > 40 && !token.Contains(" "))
{
Device.BeginInvokeOnMainThread(async () =>
{