mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
only check 4 bytes
This commit is contained in:
parent
1bd811f7a1
commit
76fa254c0f
1 changed files with 1 additions and 1 deletions
|
@ -1748,7 +1748,7 @@ void SimulateIso14443aTag(uint8_t tagType, uint16_t flags, uint8_t *useruid, uin
|
|||
emlGet(orig, 12 + MFU_DUMP_PREFIX_LENGTH, 4);
|
||||
|
||||
bool risky = false;
|
||||
for (int i = 0; i < len; i++) {
|
||||
for (int i = 0; i < 4; i++) {
|
||||
risky |= orig[i] & ~receivedCmd[2 + i];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue