mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 10:14:34 +08:00
32 sector print Incomplete for Mifare 4K(more)
This commit is contained in:
parent
1afddd2b12
commit
1bc1443731
1 changed files with 2 additions and 2 deletions
|
@ -3671,7 +3671,7 @@ static int CmdHF14AMfEGetSc(const char *Cmd) {
|
|||
PrintAndLogEx(NORMAL, "----+------------------------------------------------");
|
||||
uint8_t blocks = 4;
|
||||
uint8_t start = sector * 4;
|
||||
if (sector > 32) {
|
||||
if (sector >= 32) {
|
||||
blocks = 16;
|
||||
start = 128 + (sector - 32) * 16;
|
||||
}
|
||||
|
@ -4365,7 +4365,7 @@ static int CmdHF14AMfCGetSc(const char *Cmd) {
|
|||
PrintAndLogEx(NORMAL, "----+------------------------------------------------");
|
||||
uint8_t blocks = 4;
|
||||
uint8_t start = sector * 4;
|
||||
if (sector > 32) {
|
||||
if (sector >= 32) {
|
||||
blocks = 16;
|
||||
start = 128 + (sector - 32) * 16;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue