Research, development and trades concerning the powerful Proxmark3 device.
Remember; sharing is caring. Bring something back to the community.
"Learn the tools of the trade the hard way." +Fravia
You are not logged in.
Time changes and with it the technology
Proxmark3 @ discord
Users of this forum, please be aware that information stored on this site is not private.
MINOR BUG:
--------------
The "hf mf esave" always saves as 4k ( 32*4 + 8*16)
Which could cause some confusion
cmdhfmf.c
in iCmdHF14AMfESave(const char *Cmd)
// put hex
for (i = 0; i < 32*4 + 8*16; i++) {
if (mfEmlGetMem(buf, i, 1)) {
PrintAndLog("Cant get block: %d", i);
break;
}
for (j = 0; j < 16; j++)
fprintf(f, "%02x", buf[j]);
fprintf(f,"\n");
}
Offline
I pushed a solution into my fork. It now handles 0,1,2,4 in card-memory like other functions.
Offline