mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 09:32:41 +08:00
hf 14b dump now supports the no save parameter
This commit is contained in:
parent
94b0bcc758
commit
d480cbd1d0
2 changed files with 13 additions and 8 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Changed `hf 14b dump --ns` - now supports `no save` of card memory (@iceman1001)
|
||||||
- Changed `hf mfu dump --ns` - now supports `no save` of card memory (@iceman1001)
|
- Changed `hf mfu dump --ns` - now supports `no save` of card memory (@iceman1001)
|
||||||
- Changed the PM3 client to honor the preferences dump/trace paths. experimental support (@iceman1001)
|
- Changed the PM3 client to honor the preferences dump/trace paths. experimental support (@iceman1001)
|
||||||
- Added the possibility to load `.MCT` dump files (@iceman1001)
|
- Added the possibility to load `.MCT` dump files (@iceman1001)
|
||||||
|
|
|
@ -1359,6 +1359,7 @@ static int CmdHF14BDump(const char *Cmd) {
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_str0("f", "file", "<fn>", "(optional) filename, if no <name> UID will be used as filename"),
|
arg_str0("f", "file", "<fn>", "(optional) filename, if no <name> UID will be used as filename"),
|
||||||
|
arg_lit0(NULL, "ns", "no save to file"),
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
@ -1366,6 +1367,7 @@ static int CmdHF14BDump(const char *Cmd) {
|
||||||
int fnlen = 0;
|
int fnlen = 0;
|
||||||
char filename[FILE_PATH_SIZE] = {0};
|
char filename[FILE_PATH_SIZE] = {0};
|
||||||
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
||||||
|
bool nosave = arg_get_lit(ctx, 2);
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
|
|
||||||
|
@ -1514,15 +1516,17 @@ static int CmdHF14BDump(const char *Cmd) {
|
||||||
|
|
||||||
print_sr_blocks(data, cardsize, card.uid);
|
print_sr_blocks(data, cardsize, card.uid);
|
||||||
|
|
||||||
// save to file
|
if (nosave == false) {
|
||||||
if (fnlen < 1) {
|
// save to file
|
||||||
PrintAndLogEx(INFO, "using UID as filename");
|
if (fnlen < 1) {
|
||||||
char *fptr = filename + snprintf(filename, sizeof(filename), "hf-14b-");
|
PrintAndLogEx(INFO, "using UID as filename");
|
||||||
FillFileNameByUID(fptr, SwapEndian64(card.uid, card.uidlen, 8), "-dump", card.uidlen);
|
char *fptr = filename + snprintf(filename, sizeof(filename), "hf-14b-");
|
||||||
}
|
FillFileNameByUID(fptr, SwapEndian64(card.uid, card.uidlen, 8), "-dump", card.uidlen);
|
||||||
|
}
|
||||||
|
|
||||||
size_t datalen = (lastblock + 2) * ST25TB_SR_BLOCK_SIZE;
|
size_t datalen = (lastblock + 2) * ST25TB_SR_BLOCK_SIZE;
|
||||||
pm3_save_dump(filename, data, datalen, jsf14b, ST25TB_SR_BLOCK_SIZE);
|
pm3_save_dump(filename, data, datalen, jsf14b, ST25TB_SR_BLOCK_SIZE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return switch_off_field_14b();
|
return switch_off_field_14b();
|
||||||
|
|
Loading…
Reference in a new issue