I just got a RFID-RC522 module for Arduino and a RFID tag. This is all new to me. In this tag the memory block 7 (sector 1) data is:
00 00 00 00 00 00
FF 07 80 69
FF FF FF FF FF FF
Originally, the first 8 bytes oof the block (key A) were set to 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
.
Playing with it I wrote this data to block 7:
00 00 00 00 00 00
00 00 00 00
FF FF FF FF FF FF
And now I can no longer access it. Reading the tag with NXP TagInfo (Android app) says the default key is 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
. However, using this value, or a key consisting of all-zero bytes, I can't authenticate to the block.
How can I find out the new authentication key? How exactly did I change it?