mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
added device side option to disable EAS/AFI password. Sets to all ZEROS
This commit is contained in:
parent
35744bdd89
commit
638e892088
4 changed files with 32 additions and 1 deletions
|
@ -1271,6 +1271,14 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
DisablePrivacySlixLIso15693(payload->pwd);
|
||||
break;
|
||||
}
|
||||
case CMD_HF_ISO15693_SLIX_L_DISABLE_AESAFI: {
|
||||
struct p {
|
||||
uint8_t pwd[4];
|
||||
} PACKED;
|
||||
struct p *payload = (struct p *) packet->data.asBytes;
|
||||
DisableEAS_AFISlixLIso15693(payload->pwd);
|
||||
break;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue