From 29773e92ca903fbfc30ee08195a3307271d23c1c Mon Sep 17 00:00:00 2001 From: team-orangeBlue <63470411+team-orangeBlue@users.noreply.github.com> Date: Sun, 3 Dec 2023 11:24:38 +0300 Subject: [PATCH] Fix typo, correct data 2 new keys (SL3 sector switch; SL1SL3Mix sector switch). "instead of than" - removed the than. Signed-off-by: team-orangeBlue <63470411+team-orangeBlue@users.noreply.github.com> --- client/src/cmdhfmfp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhfmfp.c b/client/src/cmdhfmfp.c index bf8e0c95a..5d6c94929 100644 --- a/client/src/cmdhfmfp.c +++ b/client/src/cmdhfmfp.c @@ -37,7 +37,7 @@ #include "cmdtrace.h" static const uint8_t mfp_default_key[16] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; -static uint16_t mfp_card_adresses[] = {0x9000, 0x9001, 0x9002, 0x9003, 0x9004, 0xA000, 0xA001, 0xA080, 0xA081, 0xC000, 0xC001}; +static uint16_t mfp_card_adresses[] = {0x9000, 0x9001, 0x9002, 0x9003, 0x9004, 0x9006, 0x9007, 0xA000, 0xA001, 0xA080, 0xA081, 0xC000, 0xC001}; #define MFP_KEY_FILE_SIZE 14 + (2 * 64 * (AES_KEY_LEN + 1)) @@ -1169,7 +1169,7 @@ static int CmdHFMFPChConf(const char *Cmd) { arg_lit0(NULL, "nmr", "Do not expect MAC in response"), arg_int1("c", "conf", "", "Config block number, 0-3"), arg_str0("k", "key", "", "Card key, 16 hex bytes"), - arg_lit0(NULL, "cck", "Auth as Card Configuration key instead of than Card Master Key"), + arg_lit0(NULL, "cck", "Auth as Card Configuration key instead of Card Master Key"), arg_str1("d", "data", "", "New configuration data, 16 hex bytes"), arg_param_end };