Merge pull request #656 from uhei/legic-wrbl-out-of-bounds
hf legic wrbl: fix Out-of-bounds check
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user