Skip to content

Commit

Permalink
Merge pull request #2198 from datatags/interactive-mfc-sim-return
Browse files Browse the repository at this point in the history
Fix Mifare Classic sim with interactive and reader attack mode never returning console
  • Loading branch information
iceman1001 authored Dec 6, 2023
2 parents 75ba439 + e2f144c commit 88e84f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions client/src/cmdhfmf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 88e84f5

Please sign in to comment.