mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
Fix bug in 'lf em 4x70 brute' command
This commit is contained in:
parent
3c655aeb19
commit
c7825a2adf
2 changed files with 3 additions and 3 deletions
|
@ -362,7 +362,7 @@ static int bruteforce(const uint8_t address, const uint8_t *rnd, const uint8_t *
|
|||
uint8_t rev_rnd[7];
|
||||
uint8_t temp_rnd[7];
|
||||
|
||||
reverse_arraycopy((uint8_t *)rnd, rev_rnd, sizeof(rnd));
|
||||
reverse_arraycopy((uint8_t *)rnd, rev_rnd, sizeof(rev_rnd));
|
||||
memcpy(temp_rnd, rnd, sizeof(temp_rnd));
|
||||
|
||||
for (int k = start_key; k <= 0xFFFF; ++k) {
|
||||
|
|
|
@ -306,8 +306,8 @@ int CmdEM4x70Brute(const char *Cmd) {
|
|||
break;
|
||||
}
|
||||
|
||||
// should be done in about 30 minutes
|
||||
if (timeout > ((30 * 60000) / TIMEOUT)) {
|
||||
// should be done in about 60 minutes.
|
||||
if (timeout > ((60 * 60000) / TIMEOUT)) {
|
||||
PrintAndLogEx(WARNING, "\nNo response from Proxmark3. Aborting...");
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue