+int CmdLFPCF7931BruteForce(const char *Cmd){
+
+ uint8_t ctmp = param_getchar(Cmd, 0);
+ if (strlen(Cmd) < 1 || ctmp == 'h' || ctmp == 'H') return usage_pcf7931_bruteforce();
+
+ uint64_t start_password = 0;
+ uint8_t tries = 3;
+
+ if (param_gethex(Cmd, 0, (uint8_t*)(&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 & 0xFF,
+ (start_password >> 8) & 0xFF,
+ (start_password >> 16) & 0xFF,
+ (start_password >> 24) & 0xFF,
+ (start_password >> 32) & 0xFF,
+ (start_password >> 48) & 0xFF,
+ (start_password >> 56) & 0xFF);
+
+ PrintAndLog("Trying each password %d times", tries);
+
+ UsbCommand c = {CMD_PCF7931_BRUTEFORCE, {start_password, 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;
+}
+