MAD swap again

This commit is contained in:
Philippe Teuwen
2020-06-09 20:53:33 +02:00
parent 35c6ee1bbb
commit 9a15632689
4 changed files with 32 additions and 26 deletions

View File

@@ -4499,7 +4499,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
arg_str0("aA", "aid", "print all sectors with specified aid", NULL),
arg_str0("kK", "key", "key for printing sectors", NULL),
arg_lit0("bB", "keyb", "use key B for access printing sectors (by default: key A)"),
arg_lit0("", "be", "(optional, try BigEndian"),
arg_lit0("", "be", "(optional, BigEndian)"),
arg_param_end
};
CLIExecWithReturn(ctx, Cmd, argtable, true);
@@ -4511,7 +4511,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
int keylen;
CLIGetHexWithReturn(ctx, 3, key, &keylen);
bool keyB = arg_get_lit(4);
// bool use_be = arg_get_lit(5);
bool swapmad = arg_get_lit(5);
CLIParserFree(ctx);
@@ -4538,7 +4538,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
}
bool haveMAD2 = false;
MAD1DecodeAndPrint(sector0, verbose, &haveMAD2);
MAD1DecodeAndPrint(sector0, swapmad, verbose, &haveMAD2);
if (haveMAD2) {
if (mfReadSector(MF_MAD2_SECTOR, MF_KEY_A, (uint8_t *)g_mifare_mad_key, sector10)) {
@@ -4546,7 +4546,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
return PM3_ESOFT;
}
MAD2DecodeAndPrint(sector10, verbose);
MAD2DecodeAndPrint(sector10, swapmad, verbose);
}
if (aidlen == 2) {
@@ -4555,7 +4555,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
uint16_t mad[7 + 8 + 8 + 8 + 8] = {0};
size_t madlen = 0;
if (MADDecode(sector0, sector10, mad, &madlen)) {
if (MADDecode(sector0, sector10, mad, &madlen, swapmad)) {
PrintAndLogEx(ERR, "can't decode MAD");
return PM3_ESOFT;
}
@@ -4650,7 +4650,7 @@ static int CmdHFMFNDEF(const char *Cmd) {
uint16_t mad[7 + 8 + 8 + 8 + 8] = {0};
size_t madlen = 0;
res = MADDecode(sector0, (haveMAD2 ? sector10 : NULL), mad, &madlen);
res = MADDecode(sector0, (haveMAD2 ? sector10 : NULL), mad, &madlen, false);
if (res != PM3_SUCCESS) {
PrintAndLogEx(ERR, "can't decode MAD");
return res;