Skip to content

Commit

Permalink
Update cmdhfmf.c
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Moiseenko <[email protected]>
  • Loading branch information
merlokk authored Nov 8, 2023
1 parent f0b6816 commit fdfe886
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/cmdhfmf.c
Original file line number Diff line number Diff line change
Expand Up @@ -7509,8 +7509,10 @@ static int CmdHF14AGen4Info(const char *cmd) {
PrintAndLogEx(INFO, "Card type........... generic");
else if (resp[resplen - 2] == 0x02 && resp[resplen - 1] == 0xaa)
PrintAndLogEx(INFO, "Card type........... limited functionality");
else if (resp[resplen - 2] == 0x03 && resp[resplen - 1] == 0xa0)
PrintAndLogEx(INFO, "Card type........... old card version");
else if (resp[resplen - 2] == 0x06 && resp[resplen - 1] == 0xa0)
PrintAndLogEx(INFO, "Card type........... broken functionality");
PrintAndLogEx(INFO, "Card type........... new card version");
else
PrintAndLogEx(INFO, "Card type........... unknown %02x%02x", resp[resplen - 2], resp[resplen - 1]);
}
Expand Down

0 comments on commit fdfe886

Please sign in to comment.