mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
FIX: 'script run formatMifare' https://github.com/Proxmark/proxmark3/pull/362 bad comparision value
This commit is contained in:
parent
478b9c7270
commit
72f6ed45eb
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ function GetCardInfo()
|
|||
numSectors = 5
|
||||
elseif 0x10 == result.sak then -- NXP MIFARE Plus 2k
|
||||
numSectors = 32
|
||||
elseif 0x01 == sak then -- NXP MIFARE TNP3xxx 1K
|
||||
elseif 0x01 == result.sak then -- NXP MIFARE TNP3xxx 1K
|
||||
numSectors = 16
|
||||
else
|
||||
print("I don't know how many sectors there are on this type of card, defaulting to 16")
|
||||
|
|
Loading…
Reference in a new issue