mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 14:13:42 -07:00
fixed
This commit is contained in:
parent
4e205656e4
commit
c8662b509c
2 changed files with 4 additions and 3 deletions
|
@ -26,6 +26,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
|||
- Added to `hf mf nested` source key check before attack (Merlok)
|
||||
- Added to `hf mf nested` after attack it checks all found keys on non-open sectors (Merlok)
|
||||
- `hf mf chk` Added setings to set iso14443a operations timeout. default timeout set to 500us (Merlok)
|
||||
- Added to `hf mf nested` parameters `s` and `ss` for checking slow cards (Merlok)
|
||||
|
||||
## [3.0.1][2017-06-08]
|
||||
|
||||
|
|
|
@ -596,7 +596,7 @@ int CmdHF14AMfNested(const char *Cmd)
|
|||
PrintAndLog(" sample3: hf mf nested 1 0 A FFFFFFFFFFFF d ");
|
||||
PrintAndLog(" sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A");
|
||||
PrintAndLog(" sample5: hf mf nested 1 * t");
|
||||
PrintAndLog(" sample5: hf mf nested 1 * ss");
|
||||
PrintAndLog(" sample6: hf mf nested 1 * ss");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -616,7 +616,7 @@ int CmdHF14AMfNested(const char *Cmd)
|
|||
parseParamTDS(Cmd, 2, &transferToEml, &createDumpFile, &btimeout14a);
|
||||
|
||||
PrintAndLog("--nested. sectors:%2d, block no:*, eml:%c, dmp=%c checktimeout=%d us",
|
||||
SectorsCnt, transferToEml?'y':'n', createDumpFile?'y':'n', (int)btimeout14a * 10000 / 106);
|
||||
SectorsCnt, transferToEml?'y':'n', createDumpFile?'y':'n', ((int)btimeout14a * 10000) / 106);
|
||||
} else {
|
||||
blockNo = param_get8(Cmd, 1);
|
||||
|
||||
|
@ -659,7 +659,7 @@ int CmdHF14AMfNested(const char *Cmd)
|
|||
}
|
||||
|
||||
PrintAndLog("--nested. sectors:%2d, block no:%3d, key type:%c, eml:%c, dmp=%c checktimeout=%d us",
|
||||
SectorsCnt, blockNo, keyType?'B':'A', transferToEml?'y':'n', createDumpFile?'y':'n', (int)btimeout14a * 10000 / 106);
|
||||
SectorsCnt, blockNo, keyType?'B':'A', transferToEml?'y':'n', createDumpFile?'y':'n', ((int)btimeout14a * 10000) / 106);
|
||||
}
|
||||
|
||||
// one-sector nested
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue