Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/androidcrypto/mifare_ultralight_c_explorer
This is an Explorer Application for working with MIFARE Ultralight C NFC tags. You can read the complete content of the tag, read and increase the 16-bit counter, protect the data by setting Lock Bits, write data to the free user memory and use a memory protection on base of Triple DES Encryption.
https://github.com/androidcrypto/mifare_ultralight_c_explorer
android android-app mifare mifare-ultralight nfc-reader nfc-tag nfc-writer ultralight-c
Last synced: 4 days ago
JSON representation
This is an Explorer Application for working with MIFARE Ultralight C NFC tags. You can read the complete content of the tag, read and increase the 16-bit counter, protect the data by setting Lock Bits, write data to the free user memory and use a memory protection on base of Triple DES Encryption.
- Host: GitHub
- URL: https://github.com/androidcrypto/mifare_ultralight_c_explorer
- Owner: AndroidCrypto
- License: mit
- Created: 2024-08-29T21:29:50.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-18T15:19:16.000Z (3 months ago)
- Last Synced: 2024-12-18T23:42:54.117Z (4 days ago)
- Topics: android, android-app, mifare, mifare-ultralight, nfc-reader, nfc-tag, nfc-writer, ultralight-c
- Language: Java
- Homepage:
- Size: 14.3 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MIFARE Ultralight C Explorer
## Description
This app reads and writes data to NXP's MIFARE Ultralight C tag. It is tested with a fabric new Ultralight C type.
**Please do not use a MIFARE Ultralight or Ultralight EV1 tag with this app** - these have a similar command set but are different
in Authentication, page locking, counter and other details. Using these tag may brick your tag.The tutorial to this app is available on medium.com: https://medium.com/@androidcrypto/explore-a-mifare-ultralight-c-nfc-tag-android-java-e6408b1030cf
## Data Sheet
The Mifare Ultralight C datasheet is a good source for all questions regarding programming this tag:
MIFARE Ultralight C: Get the datasheet here MF0ICU2: https://www.nxp.com/docs/en/data-sheet/MF0ICU2.pdf
The datasheet is available in the docs folder of this repository, but it is always better to get one from the origin source.
## Usage
There are 5 icons in the "Bottom Navigation Bar":
1) Home: gives an overview about the app and shows the license terms of material used for the app.
2) Read: tries to read the complete content of the tag and display the data in a colored dump.
3) Write Counter: increases the 16-bit one way counter by "1".
4) Write Data: writes up to 16 characters to 4 subsequent pages of the user memory. Another option is to write a current timestamp to the tag.
5) Write Configuration: Select the page a memory protection is active. Selecting page 48 disables any memory protection. Select the mode of memory protection: write access only or read and write access. Select if you want to clear the user memory. The last option is to leave or change the current password (change to the Default or Custom key).## Screenshots of the app:
### Home Fragment:
![Home screen of the app](screenshots/small/app_home_01.png)
### Read Fragment
![Screen of the Read Fragment](screenshots/small/app_read_01.png)
![Screen of the Read Fragment](screenshots/small/app_read_02.png)
![Screen of the Read Fragment](screenshots/small/app_read_03.png)
### Write Counter Fragment
![Screen of the Write Counter Fragment](screenshots/small/app_write_counter_01.png)
### Write Data Fragment
![Screen of the Write Data Fragment](screenshots/small/app_write_data_01.png)
### Write Configuration Fragment
![Screen of the Write Configuration Fragment](screenshots/small/app_write_configuration_01.png)
![Screen of the Write Configuration Fragment](screenshots/small/app_write_configuration_02.png)
![Screen of the Write Configuration Fragment](screenshots/small/app_write_configuration_03.png)
## What is not possible with this app ?
I excluded any writing to the Lock Bytes and the One Time Programming (OTP) area. This is due to the fact that
these bits and bytes are just settable, If a bit in this bytes is set it remains set - there is no reset,
clearing or deleting of the data written to the tag.## Material used for this app
**Icons**: https://www.freeiconspng.com/images/nfc-icon
Nfc Simple PNG Transparent Background: https://www.freeiconspng.com/img/20581
**Sounds**: Sound files downloaded from Material Design Sounds: https://m2.material.io/design/sound/sound-resources.html
## Technical details
Minimum SDK is 21 (Android 5)
### Authentication of a MIFARE Ultralight C:
The Ultralight C tag uses a Triple DES authentication scheme with a 2 DES keys model, so in the end it uses a 16 bytes long TDES key.
I'm using 2 predefined keys in the app:
```plaintext
byte[] defaultAuthKey = hexStringToByteArray("49454D4B41455242214E4143554F5946"); // "IEMKAERB!NACUOYF" => "BREAKMEIFYOUCAN!", 16 bytes long
byte[] customAuthKey = "1234567890123456".getBytes(StandardCharsets.UTF_8);
```### Counter on Mifare Ultralight-C:
```plaintext
7.5.11 Counter
The MF0ICU2 features a 16-bit one-way counter, located at the first two bytes of page
29h. The default counter value is 0000h.The first1 valid WRITE or COMPATIBILITY WRITE to address 29h can be performed
with any value in the range between 0001h and FFFFh and corresponds to the initial
counter value. Every consecutive WRITE command, which represents the increment, can
contain values between 0001h and 000Fh. Upon such WRITE command and following
mandatory RF reset, the value written to the address 29h is added to the counter content.
After the initial write, only the lower nibble of the first data byte is used for the increment
value (0h-Fh) and the remaining part of the data is ignored. Once the counter value
reaches FFFFh and an increment is performed via a valid WRITE command, the
MF0ICU2 will reply a NAK. If the sum of counter value and increment is higher than
FFFFh, MF0ICU2 will reply a NAK and will not increment the counter.
An increment by zero (0000h) is always possible, but does not have any impact to the
counter value.
It is recommended to protect the access to the counter functionality by authentication.
```## License
MIFARE Ultralight C Explorer is available under the MIT license. See the LICENSE file for more info.