mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-29 11:28:50 +08:00
exclude 0x6d 00
This commit is contained in:
parent
a7cdffd568
commit
4b33a21d09
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ static int CmdHFMFPInfo(const char *Cmd) {
|
|||
// DESFire answers 0x1C or 67 00
|
||||
// Plus answers 0x0B, 0x09, 0x06
|
||||
// Which tag answers 6D 00 ??
|
||||
if (data[0] != 0x0b && data[0] != 0x09 && data[0] != 0x1C && data[0] != 0x67) {
|
||||
if (data[0] != 0x0b && data[0] != 0x09 && data[0] != 0x1C && data[0] != 0x67 && data[0] != 0x6d) {
|
||||
PrintAndLogEx(INFO, _RED_("Send copy to iceman of this command output!"));
|
||||
PrintAndLogEx(INFO, "data: %s", sprint_hex(data, datalen));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue