Fixed problem with invalid requests including spaces in URL path

This commit is contained in:
yhirose 2020-12-19 12:02:11 -05:00
parent 24bb1387d6
commit 40db42108f
2 changed files with 7 additions and 1 deletions

View file

@ -4204,7 +4204,7 @@ inline void Server::stop() {
inline bool Server::parse_request_line(const char *s, Request &req) {
const static std::regex re(
"(GET|HEAD|POST|PUT|DELETE|CONNECT|OPTIONS|TRACE|PATCH|PRI) "
"(([^?]+)(?:\\?(.*?))?) (HTTP/1\\.[01])\r\n");
"(([^? ]+)(?:\\?([^ ]*?))?) (HTTP/1\\.[01])\r\n");
std::cmatch m;
if (std::regex_match(s, m, re)) {