mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 14:23:50 -07:00
free start pointer
This commit is contained in:
parent
26b37ce64f
commit
015e02a9bf
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,8 @@ 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]
|
||||||
|
|
||||||
|
## [midsummer][2021-06-25]
|
||||||
- Added bruteforce function for the magic byte in `cmdlfnexwatch.c` and ability to clone with psk2 modulation (@Guilhem7, @MaximeBosca)
|
- Added bruteforce function for the magic byte in `cmdlfnexwatch.c` and ability to clone with psk2 modulation (@Guilhem7, @MaximeBosca)
|
||||||
- Changed `hw setmux` - improve user feedback for special case (@iceman1001)
|
- Changed `hw setmux` - improve user feedback for special case (@iceman1001)
|
||||||
- Changed 'filename' - unified file name param across client (@iceman1001)
|
- Changed 'filename' - unified file name param across client (@iceman1001)
|
||||||
|
|
|
@ -471,6 +471,8 @@ int CmdEM4x50Chk(const char *Cmd) {
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t *pkeys = keys;
|
||||||
|
|
||||||
uint64_t t1 = msclock();
|
uint64_t t1 = msclock();
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "You can cancel this operation by pressing the pm3 button");
|
PrintAndLogEx(INFO, "You can cancel this operation by pressing the pm3 button");
|
||||||
|
@ -505,7 +507,7 @@ int CmdEM4x50Chk(const char *Cmd) {
|
||||||
keys += n;
|
keys += n;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(keys);
|
free(pkeys);
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
|
||||||
if (status == PM3_SUCCESS) {
|
if (status == PM3_SUCCESS) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue