mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
fix 'hf iclass sim':
* ignore standard iso15693 INVENTORY commands silently * make iso15693 command decoder more strict (prevent decoding rubbish) * re-enable sim 3
This commit is contained in:
parent
1963cc9fe0
commit
e49d31c0e7
3 changed files with 12 additions and 14 deletions
|
@ -1128,6 +1128,9 @@ int doIClassSimulation(int simulationMode, uint8_t *reader_mac_buf) {
|
|||
// Otherwise, we should answer 8bytes (block) + 2bytes CRC
|
||||
}
|
||||
|
||||
} else if (receivedCmd[0] == 0x26 && len == 5) {
|
||||
// standard ISO15693 INVENTORY command. Ignore.
|
||||
|
||||
} else {
|
||||
// don't know how to handle this command
|
||||
char debug_message[250]; // should be enough
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue