add some len check

This commit is contained in:
merlokk 2019-01-27 00:01:04 +02:00
parent 2feef8b043
commit 1857482617

View File

@ -352,6 +352,13 @@ void nfc_process_iblock(uint8_t * buf, int len)
case APDU_FIDO_U2F_AUTHENTICATE: case APDU_FIDO_U2F_AUTHENTICATE:
printf1(TAG_NFC, "U2F Authenticate command.\r\n"); printf1(TAG_NFC, "U2F Authenticate command.\r\n");
if (plen != 1 + 64 + 1 + buf[65])
{
printf1(TAG_NFC, "U2F Authenticate request length error. len=%d keyhlen=%d.\r\n", plen, buf[65]);
nfc_write_response(buf[0], SW_WRONG_LENGTH);
return;
}
nfc_write_response(buf[0], SW_COND_USE_NOT_SATISFIED); nfc_write_response(buf[0], SW_COND_USE_NOT_SATISFIED);
break; break;