From cc73449c40af4b077e4e6379b9087b8e99f82d14 Mon Sep 17 00:00:00 2001 From: datatags Date: Wed, 6 Dec 2023 10:19:22 -0800 Subject: [PATCH 1/2] Interactive reader attack sim now returns --- client/src/cmdhfmf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 935d1cb82..cf7339d5a 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -3890,6 +3890,7 @@ static int CmdHF14AMfSim(const char *Cmd) { nonces_t data[1]; memcpy(data, resp.data.asBytes, sizeof(data)); readerAttack(k_sector, k_sectors_cnt, data[0], setEmulatorMem, verbose); + break; } //iceman: readerAttack call frees k_sector. this call below is useless. showSectorTable(k_sector, k_sectors_cnt); From e2f144c6dd8426b72782aa0823c18d6933161efe Mon Sep 17 00:00:00 2001 From: datatags Date: Wed, 6 Dec 2023 12:19:25 -0800 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c180020aa..82af9ead6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac - Fixed `hf iclass dump` truncating AA2 blocks and improve reliability (@nvx) - Added some info about UMC in "doc/magic_cards_notes.md" (@temskiy) - Added standalone mode `hf_unisniff` combining 14a/14b/15 sniffing with extra flash save options (@hazardousvoltage) + - Fixed `hf mf sim -ix` never returning console (@datatags) ## [Faraday.4.17511][2023-11-13] - Fixed Python support of `experimental_client_with_swig` (@doegox)