mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 19:59:34 +08:00
Added an key found message to the read b key with a key feature.
This commit is contained in:
parent
42d58cbced
commit
a0c2de5602
1 changed files with 5 additions and 0 deletions
|
@ -2016,6 +2016,11 @@ noValidKeyFound:
|
||||||
e_sector[current_sector_i].foundKey[current_key_type_i] = 7;
|
e_sector[current_sector_i].foundKey[current_key_type_i] = 7;
|
||||||
e_sector[current_sector_i].Key[current_key_type_i] = key64;
|
e_sector[current_sector_i].Key[current_key_type_i] = key64;
|
||||||
num_to_bytes(key64, 6, tmp_key);
|
num_to_bytes(key64, 6, tmp_key);
|
||||||
|
PrintAndLogEx(SUCCESS, "Found valid key: sector: %3d key type: %c key: " _YELLOW_("%s"),
|
||||||
|
current_sector_i,
|
||||||
|
current_key_type_i ? 'B' : 'A',
|
||||||
|
sprint_hex(tmp_key, sizeof(tmp_key))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue