MIFARE Classic: How to find to good Access Byte value

眉间皱痕 提交于 2019-12-02 11:37:12

The access bytes you chose decode to C1=7, C2=0, C3=8, so you have

  • Sector trailer: C13, C23, C33 = 0, 0, 1
  • Data blocks: C10,1,2, C20,1,2, C30,1,2 = 1, 0, 0

So you chose the sector trailer to be writable with key A and readable (except for key A itself) with key A. Consequently there is not key B. Thus, for the data blocks this means that they can be read with key A, but no writing (due to missing key B), incrementing, etc. is possible.

If you want read/write access using only key A, you would use soemthing like the following:

  • Sector trailer: C13, C23, C33 = 0, 0, 1
  • Data blocks: C10,1,2, C20,1,2, C30,1,2 = 0, 0, 0

Which would result in the access bytes C1=0, C2=0, C3=8:

FF 07 80
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!