From 0b3931f1b057f9c641711883d0d099c078b574f3 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Thu, 31 Dec 2020 11:44:19 +0100 Subject: [PATCH] adapt doc --- doc/magic_cards_notes.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/magic_cards_notes.md b/doc/magic_cards_notes.md index 08aaa0386..d24a0b7c5 100644 --- a/doc/magic_cards_notes.md +++ b/doc/magic_cards_notes.md @@ -45,12 +45,12 @@ Here are some tips if the card doesn't react or gives error on a simple `hf 14a Let's force a 4b UID anticollision and see what happens: ``` -hf 14a config --atqa 1 --bcc 2 --cl2 2 --rats 2 +hf 14a config --atqa force --bcc ignore --cl2 skip --rats skip hf 14a reader ``` It it responds, we know it's a TypeA card. But maybe it's a 7b UID, so let's force a 7b UID anticollision: ``` -hf 14a config --atqa 1 --bcc 2 --cl2 1 --cl3 2 --rats 2 +hf 14a config --atqa force --bcc ignore --cl2 force --cl3 skip --rats skip hf 14a reader ``` At this stage, you know if it's a TypeA 4b or 7b card and you can check further on this page how to reconfigure different types of cards. @@ -58,7 +58,7 @@ At this stage, you know if it's a TypeA 4b or 7b card and you can check further To restore anticollision config of the Proxmark3: ``` -hf 14a config --atqa 0 --bcc 0 --cl2 0 --cl3 0 --rats 0 +hf 14a config --std ``` # MIFARE Classic @@ -341,20 +341,20 @@ hf 14a config -h e.g. for 4b UID: ``` -hf 14a config --atqa 1 --bcc 2 --cl2 2 --rats 2 +hf 14a config --atqa force --bcc ignore --cl2 skip --rats skip hf mf wrbl 0 A FFFFFFFFFFFF 11223344440804006263646566676869 # for 1k hf mf wrbl 0 A FFFFFFFFFFFF 11223344441802006263646566676869 # for 4k -hf 14a config --atqa 0 --bcc 0 --cl2 0 --rats 0 +hf 14a config --std hf 14a reader ``` e.g. for 7b UID: ``` -hf 14a config --atqa 1 --bcc 2 --cl2 1 --cl3 2 --rats 2 +hf 14a config --atqa force --bcc ignore --cl2 force --cl3 skip --rats skip hf mf wrbl 0 A FFFFFFFFFFFF 04112233445566084400626364656667 # for 1k hf mf wrbl 0 A FFFFFFFFFFFF 04112233445566184200626364656667 # for 4k -hf 14a config --atqa 0 --bcc 0 --cl2 0 --cl3 0 --rats 0 +hf 14a config --std hf 14a reader ``` ## MIFARE Classic DirectWrite, FUID version aka 1-write @@ -604,9 +604,9 @@ hf 14a config -h E.g.: ``` -hf 14a config --atqa 1 --bcc 2 --cl2 1 --cl3 2 --rats 2 +hf 14a config --atqa force --bcc ignore --cl2 force --cl3 skip --rats skip hf mfu setuid 04112233445566 -hf 14a config --atqa 0 --bcc 0 --cl2 0 --cl3 0 --rats 0 +hf 14a config --std hf 14a reader ```