+int CmdLFPCF7931BruteForce(const char *Cmd){
+
+ uint8_t ctmp = param_getchar(Cmd, 0);
+ if (strlen(Cmd) < 1 || ctmp == 'h' || ctmp == 'H') return usage_pcf7931_bruteforce();
+
+ uint8_t start_password[7] = {0};
+ uint8_t tries = 3;
+
+ if (param_gethex(Cmd, 0, start_password, 14)) return usage_pcf7931_bruteforce();
+ if (param_getdec(Cmd, 1, &tries)) return usage_pcf7931_bruteforce();
+
+ PrintAndLog("Bruteforcing from password: %02x %02x %02x %02x %02x %02x %02x",
+ start_password[0],
+ start_password[1],
+ start_password[2],
+ start_password[3],
+ start_password[4],
+ start_password[5],
+ start_password[6]);
+
+ PrintAndLog("Trying each password %d times", tries);
+
+ UsbCommand c = {CMD_PCF7931_BRUTEFORCE, {bytes_to_num(start_password, 7), tries} };
+
+ c.d.asDwords[7] = (configPcf.OffsetWidth + 128);
+ c.d.asDwords[8] = (configPcf.OffsetPosition + 128);
+ c.d.asDwords[9] = configPcf.InitDelay;
+
+ clearCommandBuffer();
+ SendCommand(&c);
+ //no ack?
+ return 0;
+}
+
+static command_t CommandTable[] =