mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-22 16:09:53 +08:00
CHG: 'sc brute' loop 31, 255
This commit is contained in:
parent
ddfe584582
commit
ab9048f7c5
1 changed files with 2 additions and 2 deletions
|
@ -889,11 +889,11 @@ static int smart_brute_sfi(bool decodeTLV){
|
|||
|
||||
PrintAndLogEx(INFO, "Start SFI brute forcing");
|
||||
|
||||
for (uint8_t sfi=1; sfi <= 3; sfi++) {
|
||||
for (uint8_t sfi=1; sfi <= 31; sfi++) {
|
||||
|
||||
printf("."); fflush(stdout);
|
||||
|
||||
for (uint16_t rec=1; rec <= 3; rec++) {
|
||||
for (uint16_t rec=1; rec <= 255; rec++) {
|
||||
|
||||
if (ukbhit()) {
|
||||
int gc = getchar(); (void)gc;
|
||||
|
|
Loading…
Reference in a new issue