text
[RRG-proxmark3.git] / doc / cloner_notes.md
blob78f7b360e027f6df968fb481bb55c6ffbe93a145
1 # Notes on Cloner guns
3 This document is based mostly on information posted on http://www.proxmark.org/forum/viewtopic.php?pid=39903#p39903
5 - [Notes on Cloner guns](#notes-on-cloner-guns)
6 - [Blue and black cloners](#blue-and-black-cloners)
7 - [White cloner (pre 2015)](#white-cloner-pre-2015)
8 - [White cloner (after 2016)](#white-cloner-after-2016)
9 - [White cloner (after 2016 D Quality)](#white-cloner-after-2016-d-quality)
10 - [Restore page1 data](#restore-page1-data)
11 - [Sniffing the comms](#sniffing-the-comms)
14 # Blue and black cloners
16 3 variants: 
17 1. EM cloner
18 2. HID cloner
19 3. EM/HID cloner
21 Quality varies my manufacturer (Quality A (Good) until D (Bad))
22 They set a password on block 7 of the chip and set the password enable bit in block 0
23 ```
24 Standard password is normally:    51243648
25 ```
26 **Be sure to purchase the EM/HID version**
28 # White cloner (pre 2015)
30 Multifrequency
31 Buttons light up BLUE
32 Reads data correctly
33 Coil performance acceptable 
34 ```
35 Standard password is normally (for T55xx):  AA55BBBB
36 Standard password 13,56mHz:       individual per white cloner
37 ```
40 # White cloner (after 2016)
41 Multifrequency
42 Buttons light up  WHITE
43 Data scrambled (variable per individual cloner, possibly due to prevent legal issues)
44 Coil performance good
45 ```
46 Standard password is normally (for T55xx):  AA55BBBB
47 Standard password 13,56mHz:       individual per white cloner
48 ```
51 # White cloner (after 2016 D Quality)
52 Multifrequency (it says so but it doesn't)
53 Only works for EM/HID card (125kHz)
54 High frequency not working
55 ```
56 Standard password is normally (for T55xx):  AA55BBBB
57 ```
58 **Note: Sets the HID card in TEST MODE**
61 # Restore page1 data
62 ```
63 lf t55xx write -b 1 -d E0150A48 --pg1
64 If t55xx write -b 2 -d 2D782308 --pg1
65 ```
67 # Sniffing the comms
68 The T55x7 protocol uses a pwm based protocol for writing to tags.  In order to make decoding easier try the new command as seen below instead. It will try to extract the data written.
70 ```
71 -- after threshold limit 20 is triggered, skip 10000 samples before collecting samples.
72 lf config -s 10000 -t 20
73 lf t55xx sniff
75 -- if you have a save trace from before, try
76 data load -f xxxxxxx.pm3
77 lf t55xx sniff -1
78 ```
80 It uses the existing `lf sniff` command to collect the data, so setting that first as per normal sniffing is recommended. Once you have a sniff, you can "re-sniff" from the stored sniffed data and try different settings, if you think the data is not clean.
82 As normal, the cloner may write data past the end of the 40K sample buffer. So using the `lf config -s <x bytes>` then re-run the sniff to see if there is more data.