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
commit 52e94f21f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}