mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-24 16:14:59 +08:00
textual
This commit is contained in:
parent
152a2b43c0
commit
7a653e7faf
3 changed files with 6 additions and 5 deletions
|
@ -191,7 +191,7 @@ void RunMod(void) {
|
|||
read_successful = false;
|
||||
break;
|
||||
}
|
||||
// We're skipping 14 blocks (56 bytes) here, as that "[...] has version/signature/counter data here" according to comments on hf_mfu_dumptoemulator
|
||||
// We're skipping 14 blocks (56 bytes) here, as that "[...] has version/signature/counter data here" according to comments on data_mfu_bin2eml
|
||||
// When converting a bin, it's almost all 0 other than one 0x0F byte, and functionality seems to be unaffected if that byte is set to 0x00.
|
||||
emlSetMem_xt(dataout, 14 + i, 1, 4);
|
||||
Dbhexdump(4, dataout, 0);
|
||||
|
|
|
@ -2283,7 +2283,7 @@ static int CmdHF14AMfUeLoad(const char *Cmd) {
|
|||
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
||||
CLIParserFree(ctx);
|
||||
|
||||
PrintAndLogEx(HINT, "Hint: See " _YELLOW_("`script run hf_mfu_dumptoemulator`") " to convert the .bin to .eml");
|
||||
PrintAndLogEx(HINT, "Hint: See " _YELLOW_("`script run data_mfu_bin2eml`") " to convert the .bin to .eml");
|
||||
return CmdHF14AMfELoad(Cmd);
|
||||
}
|
||||
//
|
||||
|
@ -2294,7 +2294,8 @@ static int CmdHF14AMfUSim(const char *Cmd) {
|
|||
CLIParserInit(&ctx, "hf mfu sim",
|
||||
"Simulate MIFARE Ultralight family type based upon\n"
|
||||
"ISO/IEC 14443 type A tag with 4,7 or 10 byte UID\n"
|
||||
"from emulator memory. See `hf mfu eload` first",
|
||||
"from emulator memory. See `hf mfu eload` first. \n"
|
||||
"See `hf 14a sim -h` to see available types. You want 2 or 7 usually.",
|
||||
"hf mfu sim -t 2 --uid 1122344556677 -> MIFARE Ultralight\n"
|
||||
"hf mfu sim -t 7 --uid 1122344556677 -n 5 -> AMIIBO (NTAG 215), pack 0x8080"
|
||||
);
|
||||
|
|
|
@ -332,9 +332,9 @@ pm3 --> hf mfu info
|
|||
Clone MIFARE Ultralight EV1 Sequence
|
||||
```
|
||||
pm3 --> hf mfu dump -k FFFFFFFF
|
||||
pm3 --> script run hf_mfu_dumptoemulator -i hf-mfu-XXXX-dump.bin -o hf-mfu-XXXX-dump.eml
|
||||
pm3 --> script run data_mfu_bin2eml -i hf-mfu-XXXX-dump.bin -o hf-mfu-XXXX-dump.eml
|
||||
pm3 --> hf mfu eload -u -f hf-mfu-XXXX-dump.eml
|
||||
pm3 --> hf mfu sim -t 7 -f hf-mfu-XXXX-dump.eml
|
||||
pm3 --> hf mfu sim -t 7
|
||||
```
|
||||
|
||||
Bruteforce MIFARE Classic card numbers from 11223344 to 11223346
|
||||
|
|
Loading…
Reference in a new issue