From ad27566030cc0dc51f2b430448e59eff5c718b48 Mon Sep 17 00:00:00 2001 From: logicog Date: Fri, 28 Nov 2025 07:42:38 +0100 Subject: [PATCH] Use current password in httpd.c --- httpd/httpd.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/httpd/httpd.c b/httpd/httpd.c index b1df38a..f40aa3b 100644 --- a/httpd/httpd.c +++ b/httpd/httpd.c @@ -9,7 +9,6 @@ #include "../html_data.h" #define SESSION_ID "1234567890ab" -#define PASSWORD "1234" #define SESSION_TIMEOUT 200 // Upload Firmware to 1M @@ -53,7 +52,7 @@ __xdata uint8_t verify_crc; __xdata uint32_t max_upload; __xdata uint16_t short_parsed; -__xdata char password[21]; +__xdata char passwd[21]; __xdata char session_id[13]; __xdata uint8_t authenticated; __xdata uint32_t now; @@ -372,7 +371,7 @@ void handle_post(void) } else if (is_word(request_path, "login")) { print_string("POST login\n"); p += 8; // Read also over "pwd=" - if (is_word(p, PASSWORD)) { + if (is_word_x(p, passwd)) { print_string("Password accepted!\n"); reg_read_m(RTL837X_REG_SEC_COUNTER); timeptr = (uint8_t*)&last_session_use; // last_session_use is Little endian