Common stuff for all my devices' web server pages: css, login, log, ipv4, ipv6, firmware update, clock, reset info etc.

Dependents:   oldheating gps motorhome heating

Security

A password has to be set whenever there has been a software reset. Resets following faults or power on do not require a new password as the hash is restored from the RTC GPREG register.

The password is not saved on the device; instead a 32 bit hash of the password is saved. It would take 2^31 attempts to brute force the password: this could be done in under a month if an attempt were possible every millisecond. To prevent this a 200 ms delay is introduced in the reply to the login form, that gives a more reasonable 13 years to brute force the password.

Once the password is accepted a random session id is created. This is 36 bit to give six base 64 characters but without an extra delay. If an attempt could be made every ms then this would still take over a year to brute force.

The most likely attack would to use a dictionary with, say, 10 million entries against the password which would still take 20 days to do.

Revision:
138:44d84506b2f6
Parent:
137:3b6632374855
Child:
139:e189c6669983
--- a/common/web-ajax-class.inc	Tue Jun 02 08:32:21 2020 +0000
+++ b/common/web-ajax-class.inc	Tue Jun 02 16:19:34 2020 +0000
@@ -83,27 +83,37 @@
 "        ajaxOverrideBlockUpdateOnFocus_ = false; //Received response so reset override after display\n"
 "   }\n"
 "}\n"
-"function ajaxSendAjaxRequest_(request) //Used by this script and from HTML page\n"
+"function ajaxSendNameValue_(name, value) //Used by this script and from HTML page\n"
 "{\n"
 "    ajaxXhr_ = new XMLHttpRequest();\n"
 "    ajaxXhr_.onreadystatechange = ajaxHandleAjaxResponse_;\n"
-"    if (request)\n"
+"    if (name)\n"
 "    {\n"
-"        request = request.split('%').join('%25');\n"
-"        request = request.split('+').join('%2B');\n"
-"        ajaxXhr_.open('GET', ajaxServer_ + '?' + request, true);\n"
+"        if (value)\n"
+"        {\n"
+"            value = value.split('%').join('%25'); //Encode '%'s first\n"
+"            value = value.split('+').join('%2B');\n"
+"            value = value.split('=').join('%3D');\n"
+"            value = value.split('?').join('%3F');\n"
+"            value = value.split('#').join('%23');\n"
+"            ajaxXhr_.open('GET', ajaxServer_ + '?' + name + '=' + value, true);\n"
+"        }\n"
+"        else\n"
+"        {\n"
+"            ajaxXhr_.open('GET', ajaxServer_ + '?' + name, true);\n"
+"        }\n"
 "    }\n"
 "    else\n"
 "    {\n"
-"        ajaxXhr_.open('GET', ajaxServer_                , true);\n"
+"        ajaxXhr_.open('GET', ajaxServer_, true);\n"
 "    }\n"
 "    ajaxXhr_.send();\n"
 "    ajaxMsCountAtAjaxSend_ = ajaxMs_;\n"
 "}\n"
-"function AjaxRequest(request) //From html\n"
+"function AjaxSendNameValue(name, value) //From html\n"
 "{\n"
 "    ajaxOverrideBlockUpdateOnFocus_ = true; //Request has come from an update\n"
-"    ajaxSendAjaxRequest_(request);\n"
+"    ajaxSendNameValue_(name, value);\n"
 "}\n"
 "\n"
 "//Private functions\n"