mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Merge pull request #2034 from rdmitr/hardnested-no-signature-detect-when-offline
Do not try to detect Mifare classic EV1 signature in offline mode
This commit is contained in:
commit
1c52bd5ac3
1 changed files with 1 additions and 1 deletions
|
@ -2242,7 +2242,7 @@ static int CmdHF14AMfNestedHard(const char *Cmd) {
|
|||
}
|
||||
|
||||
// detect MFC EV1 Signature
|
||||
if (detect_mfc_ev1_signature() && keylen == 0) {
|
||||
if (g_session.pm3_present && detect_mfc_ev1_signature() && keylen == 0) {
|
||||
PrintAndLogEx(INFO, "MIFARE Classic EV1 card detected");
|
||||
blockno = 69;
|
||||
keytype = MF_KEY_B;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue