From cdd0126b30b174f3b4f5a6bf5e9bf0d4cc6bc882 Mon Sep 17 00:00:00 2001 From: Corey Harding Date: Sun, 11 Mar 2018 05:44:57 -0400 Subject: [PATCH] Release v1.1.1337 - Fix bug where leading 0's not displayed Leading zeros were transmitted properly but not displayed on the initial landing page. --- Source Code/esprfidtool/esprfidtool.ino | 2 +- Source Code/esprfidtool/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source Code/esprfidtool/esprfidtool.ino b/Source Code/esprfidtool/esprfidtool.ino index 8355019..3e043a5 100644 --- a/Source Code/esprfidtool/esprfidtool.ino +++ b/Source Code/esprfidtool/esprfidtool.ino @@ -1142,7 +1142,7 @@ void setup() { } if (server.hasArg("bruteSTART")) { - server.send(200, "text/html", String()+"<- BACK TO INDEX

<- BACK TO EXPERIMENTAL TX MODE

Brute forcing "+pinBITS+"bit Wiegand Format PIN from "+bruteSTART+" to "+bruteEND+" with a "+pinHTMLDELAY+"ms delay between \"keypresses\"
This may take a while, your device will be busy until the sequence has been completely transmitted!
Please \"STOP CURRENT TRANSMISSION\" before attempting to use your device or simply wait for the transmission to finish.
You can view if the brute force attempt has completed by returning to the Experimental TX page and checking the status located under \"Bruteforce PIN\"

"); + server.send(200, "text/html", String()+"<- BACK TO INDEX

<- BACK TO EXPERIMENTAL TX MODE

Brute forcing "+pinBITS+"bit Wiegand Format PIN from "+(server.arg("bruteSTART"))+" to "+(server.arg("bruteEND"))+" with a "+pinHTMLDELAY+"ms delay between \"keypresses\"
This may take a while, your device will be busy until the sequence has been completely transmitted!
Please \"STOP CURRENT TRANSMISSION\" before attempting to use your device or simply wait for the transmission to finish.
You can view if the brute force attempt has completed by returning to the Experimental TX page and checking the status located under \"Bruteforce PIN\"

"); delay(50); } diff --git a/Source Code/esprfidtool/version.h b/Source Code/esprfidtool/version.h index 9c2b929..1f6660f 100644 --- a/Source Code/esprfidtool/version.h +++ b/Source Code/esprfidtool/version.h @@ -1 +1 @@ -String version = "1.1.1"; +String version = "1.1.1337";