Merge pull request #656 from uhei/legic-wrbl-out-of-bounds

hf legic wrbl: fix Out-of-bounds check
This commit is contained in:
Iceman
2020-04-08 04:33:51 +02:00
committed by GitHub

View File

@@ -681,7 +681,7 @@ static int CmdLegicWrbl(const char *Cmd) {
return PM3_EOUTOFBOUND;
}
if (len + offset >= card.cardsize) {
if (len + offset > card.cardsize) {
PrintAndLogEx(WARNING, "Out-of-bounds, Cardsize = %d, [offset+len = %d ]", card.cardsize, len + offset);
return PM3_EOUTOFBOUND;
}