From 59379247e66b16191f485cd189dc8b1a6b1d378a Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 8 Mar 2021 11:31:40 +0100 Subject: [PATCH] adapt text to t55xx --- client/src/cmdlfnedap.c | 28 ++++++++++++++-------------- doc/cheatsheet.md | 4 ++-- doc/cloner_notes.md | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/client/src/cmdlfnedap.c b/client/src/cmdlfnedap.c index 829a5b106..e45d35c3d 100644 --- a/client/src/cmdlfnedap.c +++ b/client/src/cmdlfnedap.c @@ -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, ""); } diff --git a/doc/cheatsheet.md b/doc/cheatsheet.md index 1358c8f3d..4ff857d9c 100644 --- a/doc/cheatsheet.md +++ b/doc/cheatsheet.md @@ -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 number to write. Between 0-7 d : 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 diff --git a/doc/cloner_notes.md b/doc/cloner_notes.md index 92de920ad..77edc244b 100644 --- a/doc/cloner_notes.md +++ b/doc/cloner_notes.md @@ -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.