Skip to content

Commit a14ae34

Browse files
committed
Fix buffer overflow in ESP8266WebServer::authenticate (#1790)
1 parent 5227b32 commit a14ae34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WebServer/src/ESP8266WebServer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ bool ESP8266WebServer::authenticate(const char * username, const char * password
9393
authReq = authReq.substring(6);
9494
authReq.trim();
9595
char toencodeLen = strlen(username)+strlen(password)+1;
96-
char *toencode = new char[toencodeLen];
96+
char *toencode = new char[toencodeLen + 1];
9797
if(toencode == NULL){
9898
authReq = String();
9999
return false;

0 commit comments

Comments
 (0)