mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
adapt text to t55xx
This commit is contained in:
parent
7d5d733095
commit
59379247e6
3 changed files with 18 additions and 18 deletions
|
@ -242,25 +242,25 @@ static int CmdLFNedapDemod(const char *Cmd) {
|
|||
|
||||
|
||||
configuration
|
||||
lf t55xx wr b 0 d 00170082
|
||||
lf t55xx wr -b 0 -d 00170082
|
||||
|
||||
1) uid 049033
|
||||
lf t55 wr b 1 d FF8B4168
|
||||
lf t55 wr b 2 d C90B5359
|
||||
lf t55 wr b 3 d 19A40087
|
||||
lf t55 wr b 4 d 120115CF
|
||||
lf t55xx wr -b 1 -d FF8B4168
|
||||
lf t55xx wr -b 2 -d C90B5359
|
||||
lf t55xx wr -b 3 -d 19A40087
|
||||
lf t55xx wr -b 4 -d 120115CF
|
||||
|
||||
2) uid 001630
|
||||
lf t55 wr b 1 d FF8B6B20
|
||||
lf t55 wr b 2 d F19B84A3
|
||||
lf t55 wr b 3 d 18058007
|
||||
lf t55 wr b 4 d 1200857C
|
||||
lf t55xx wr -b 1 -d FF8B6B20
|
||||
lf t55xx wr -b 2 -d F19B84A3
|
||||
lf t55xx wr -b 3 -d 18058007
|
||||
lf t55xx wr -b 4 -d 1200857C
|
||||
|
||||
3) uid 39feff
|
||||
lf t55xx wr b 1 d ffbfa73e
|
||||
lf t55xx wr b 2 d 4c0003ff
|
||||
lf t55xx wr b 3 d ffbfa73e
|
||||
lf t55xx wr b 4 d 4c0003ff
|
||||
lf t55xx wr -b 1 -d ffbfa73e
|
||||
lf t55xx wr -b 2 -d 4c0003ff
|
||||
lf t55xx wr -b 3 -d ffbfa73e
|
||||
lf t55xx wr -b 4 -d 4c0003ff
|
||||
|
||||
*/
|
||||
|
||||
|
@ -459,7 +459,7 @@ static int CmdLFNedapClone(const char *Cmd) {
|
|||
|
||||
if (res == PM3_SUCCESS) {
|
||||
PrintAndLogEx(INFO, "The block 0 was changed (eXtended) which can be hard to detect.");
|
||||
PrintAndLogEx(INFO, "Configure it manually " _YELLOW_("`lf t55xx config b 64 d BI i 1 o 32`"));
|
||||
PrintAndLogEx(INFO, "Configure it manually " _YELLOW_("`lf t55xx config -b 64 --BI -i -o 32`"));
|
||||
} else {
|
||||
PrintAndLogEx(NORMAL, "");
|
||||
}
|
||||
|
|
|
@ -561,7 +561,7 @@ EM is ASK
|
|||
HID Prox is FSK
|
||||
Indala is PSK
|
||||
|
||||
pm3 --> lf t55xx config FSK
|
||||
pm3 --> lf t55xx config --FSK
|
||||
```
|
||||
|
||||
Set timings to default
|
||||
|
@ -579,7 +579,7 @@ Write to T55xx block
|
|||
b <block> : block number to write. Between 0-7
|
||||
d <data> : 4 bytes of data to write (8 hex characters)
|
||||
|
||||
pm3 --> lf t55xx wr b 0 d 00081040
|
||||
pm3 --> lf t55xx wr -b 0 -d 00081040
|
||||
```
|
||||
|
||||
Wipe a T55xx tag and set defaults
|
||||
|
|
|
@ -69,12 +69,12 @@ The T55x7 protocol uses a pwm based protocol for writing to tags. In order to m
|
|||
|
||||
```
|
||||
-- after threshold limit 20 is triggered, skip 10000 samples before collecting samples.
|
||||
lf config s 10000 t 20
|
||||
lf config -s 10000 -t 20
|
||||
lf t55xx sniff
|
||||
|
||||
-- if you have a save trace from before, try
|
||||
data load -f xxxxxxx.pm3
|
||||
lf t55xx sniff 1
|
||||
lf t55xx sniff -1
|
||||
```
|
||||
|
||||
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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue