https://github.com/erikpelli/mizipgen
Key generator for Mifare Tag "MiZip"
https://github.com/erikpelli/mizipgen
keys-generator mifare mifare-classic mifare-tag mifare1k
Last synced: about 1 month ago
JSON representation
Key generator for Mifare Tag "MiZip"
- Host: GitHub
- URL: https://github.com/erikpelli/mizipgen
- Owner: ErikPelli
- License: gpl-3.0
- Created: 2019-10-01T17:10:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T14:21:06.000Z (about 5 years ago)
- Last Synced: 2025-03-26T20:49:33.481Z (about 2 months ago)
- Topics: keys-generator, mifare, mifare-classic, mifare-tag, mifare1k
- Language: Java
- Homepage:
- Size: 357 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MiZip-Tools
Calculate A/B keys (MiZip) for a Mifare tag.
> Based on: https://github.com/iceman1001/proxmark3/blob/master/client/scripts/calc_mizip.lua but rewritten in JavaTo generate the keys use the tester *MiZipAllTester.java* or download the .jar from [here](https://github.com/ErikPelli/MiZipGen/releases) (Made with OpenJDK 12), and insert your Mifare tag UID when required.
If you want to use the class as library, please consult the docs.To create your .jar executable and use it type:
> jar --create --main-class=MiZipAllTester --file MiZipGen.jar MiZipAllTester.class MiZipGen.class> java -jar MiZipGen.jar
Representative scheme of multidimensional array returned from genAllKeys:
```
[
[
"Key A sector 0",
"Key B sector 0",
],
[
"Key A sector 1",
"Key B sector 1",
],
[
"Key A sector 2",
"Key B sector 2",
],
[
"Key A sector 3",
"Key B sector 3",
],
[
"Key A sector 4",
"Key B sector 4",
]
]
```