officiallymarky / RFID-Tag-Guide

Instructions on how to read out the bambulab nfc tags

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bambulab RFID Tag Guide

This guide gives you a basic overview how you can encrypt your tags. Since we don't know how Bambulab will react on this guide and the general reverse engineering of the tags: Please don't share you tag's UID and the related keys for now.

We are currently working on a way to sumbmit the tag data in a secure way so analysis on the data could be done.

Table of contents

Todos/Timeline/Next steps

  • Tool for automatic trace analysis
  • Web service for tag submisson with automatic anonymized data publishing to github
  • Tag content analysis

Required Epuipment

  • Bambulab 3D Printer with AMS
  • Bambulab Filament spool or the related tags
  • A proxmark3 compatible rfid reader
  • proxmark3 installed on your computer

Proxmark3 compatible readers

Proxmark3 easy

A Proxmark 3 easy is sufficent for all the tasks that need to be done. You can buy a clone from alixepress, amazon or dangerous things.

Hacking a Bambulab Tag and readout of it's data

We document here the most simple approach to get all required A-Keys and the data of the tag. The easiest way is to sniff the data

Bambulab AMS RFID readers and sniffing

The Bambulab AMS RFID readers are locate between slot 1&2 and slot 3&4

For sniffing you can place a bambulab spool in slot 1 and place the reader next to the AMS reader. If you have already a single tag you need to place a spool without a tag in slot one and tape a tag on the top side of the reader and hold the proxmark3 next to the reader in such a way that the proxmark3 reader's bottom side is directed to the AMS reader so the proxmark3 reader is between the tag and the AMS reader. It is recommended to rotate the proxmark3 reader similar to the spool. Details can be found in the next steps.

Sniffing the data

To start the sniffing connect your rfid reader and open your proxmark3. Start sniffing with:

hf 14a sniff -c -r

Hold no the proxmark3 reader next to the AMS reader and load the filament or if already loaded the update icon on the screen.

When you are done you can press the button on the rfid-reader to stop the trace. To visualize the trace you just enter:

trace list -t mf

You should be able to see already first keys. Until you see a message : "Nested authentication detected." with some bruteforce command: tools/mf_nonce_brute/mf_nonce_brute <parameters>

Execute this command in the proxmark3 directory in an other terminal and write down or save the found key.

Check the date for crc errors and if it's fine save the trace with the following command.

trace save -f <trace-name>

You can record now all your tags. If you want to load the traces later

trace load -f <trace-name>

To view the loaded trace just enter the following command.

trace list -1 -t <trace-name>

If you are using traces in the next steps you need to add the -1 option when you analyze the traces.

Getting the other keys by analyzing the log file

Remove now the spool/tag from the printer and place it on the reader so we can check all the keys.

Now a dictonary (*.dic) file with all the already found and bruteforced keys must be created.

Enter the keys line by line into that file.

The next steps need to be repeated until you have all keys. (A scirpt for this is already WIP)

  1. trace list -t mf -f <dic_file>
  2. bruteforce the new keys with the displayed command in a seperate terminal and add all new keys to the dict file
  3. verify the keys: hf mf fchk --1k -f <dic_file>
  4. Go to 1 until you found all keys

Data Readout

Before the data can be read we need to generate a key file

hf mf fchk --1k -f <dic_file> --dump

The output is a binary key file: hf-mf-<TAG UID>-key.bin

Dump now the data:

hf mf dump --1k --keys hf-mf-<TAG UID>-key.bin

This can be viewed now in a hex or binary editor or you can view it with:

hf mf view -f hf-mf-<TAG UID>-dump.bin

Generate Keys based on random UID

TODO

Tag stucture

The following infos are already known

sec blk Data
0 0 UID and Manufacturing Data - Tag specific
0 1 Unkown ASCII string
0 2 Flimaent type in ASCII (PLA, ..)
0 3 A-Keys Sector 0 (6 bytes), Permission Sector 1 (4 bytes), B-Keys Sector 0 (6 bytes)
1 4 ASCII string of detailed Filament type (PLA Basic, ...)
1 5 Color in hex (first 3 Bytes) & Unkown binary data
1 6 Unkown binary data
1 7 A-Keys Sector 1 (6 bytes), Permission Sector 1 (4 bytes), B-Keys Sector 1 (6 bytes)
2 8 Unkown binary data
2 9 Unkown binary data and ASCII string
2 10 Unkown binary data
2 11 A-Keys Sector 2 (6 bytes), Permission Sector 2 (4 bytes), B-Keys Sector 2 (6 bytes)
3 12 Production Date and Time in ASCII ? <year>_<month>_<day>_<hour>_<minute>
3 13 Unkown binary data could be part of production date/time
3 14 Unkown binary data
3 15 A-Keys Sector 3 (6 bytes), Permission Sector 3 (4 bytes), B-Keys Sector 3 (6 bytes)
4 16 Empty
4 17 Empty
4 18 Empty
4 19 A-Keys Sector 4 (6 bytes), Permission Sector 4 (4 bytes), B-Keys Sector 4 (6 bytes)
5 20 Empty
5 21 Empty
5 22 Empty
5 23 A-Keys Sector 5 (6 bytes), Permission Sector 5 (4 bytes), B-Keys Sector 5 (6 bytes)
6 24 Empty
6 25 Empty
6 26 Empty
6 27 A-Keys Sector 6 (6 bytes), Permission Sector 6 (4 bytes), B-Keys Sector 6 (6 bytes)
7 28 Empty
7 29 Empty
7 30 Empty
7 31 A-Keys Sector 7 (6 bytes), Permission Sector 7 (4 bytes), B-Keys Sector 7 (6 bytes)
8 32 Empty
8 33 Empty
8 34 Empty
8 35 A-Keys Sector 8 (6 bytes), Permission Sector 8 (4 bytes), B-Keys Sector 8 (6 bytes)
9 37 Empty
9 38 Empty
9 39 Empty
9 15 A-Keys Sector 9 (6 bytes), Permission Sector 9 (4 bytes), B-Keys Sector 9 (6 bytes)
10-15 * Unkown binary data Maybe CRC

The The first part of the filament serial number seems to be the Tag UID.

Compatible RFID tags - By generation

Gen 1 --> Not compatible(due to AMS checking if tag is unlockable with command 0x40)

Gen 2 --> Not tested

Gen 2 OTW --> Not tested

Gen 3 --> Not tested

Gen 4 --> Not tested(The best option but pricey and hard to source in small chip formfactor)

About

Instructions on how to read out the bambulab nfc tags