Merge pull request #1271 from tharexde/fix_easy

watchdog in 4x50 brute function
This commit is contained in:
Iceman 2021-05-13 19:34:57 +02:00 committed by GitHub
commit cfca35ad5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -631,6 +631,8 @@ static bool brute(uint32_t start, uint32_t stop, uint32_t *pwd) {
for (*pwd = start; *pwd <= stop; (*pwd)++) {
WDT_HIT();
if (login(*pwd) == PM3_SUCCESS) {
pwd_found = true;