mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-30 20:07:55 +08:00
fix: run gen3 on non MFC
This commit is contained in:
parent
e52b7c2139
commit
6391a9ab00
1 changed files with 2 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
|||
#include "util_posix.h" // msclock
|
||||
#include "aidsearch.h"
|
||||
#include "cmdhf.h" // handle HF plot
|
||||
|
||||
#include "protocols.h" // MAGIC_GEN_1A
|
||||
|
||||
bool APDUInFramingEnable = true;
|
||||
|
||||
|
@ -1611,7 +1611,6 @@ static int detect_nxp_card(uint8_t sak, uint16_t atqa, uint64_t select_status) {
|
|||
printTag("MIFARE Hospitality");
|
||||
printTag("NTAG 2xx");
|
||||
type |= MTULTRALIGHT;
|
||||
type |= MTOTHER;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2097,7 +2096,7 @@ int infoHF14A(bool verbose, bool do_nack_test, bool do_aid_search) {
|
|||
isMagic = detect_mf_magic(true);
|
||||
}
|
||||
if (isMifareUltralight) {
|
||||
isMagic = detect_mf_magic(false);
|
||||
isMagic = (detect_mf_magic(false) == MAGIC_NTAG21X);
|
||||
}
|
||||
if (isMifareClassic) {
|
||||
int res = detect_classic_static_nonce();
|
||||
|
|
Loading…
Reference in a new issue