Skip to content

Commit

Permalink
sfeakes#135: Buffer overflow in action_web_request
Browse files Browse the repository at this point in the history
  • Loading branch information
ballle98 committed May 20, 2024
1 parent 692f9ec commit f4ca2a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net_services.c
Original file line number Diff line number Diff line change
Expand Up @@ -1535,8 +1535,8 @@ void action_web_request(struct mg_connection *nc, struct http_message *http_msg)
mg_send_head(nc, 200, strlen(GET_RTN_UNKNOWN), CONTENT_TEXT);
mg_send(nc, GET_RTN_UNKNOWN, strlen(GET_RTN_UNKNOWN));
}

sprintf(buf, "action_web_request() request '%.*s' took",(int)http_msg->uri.len, http_msg->uri.p);
snprintf(buf, sizeof(buf), "action_web_request() request '%.*s' took",
(int)http_msg->uri.len, http_msg->uri.p);

DEBUG_TIMER_STOP(tid, NET_LOG, buf);
}
Expand Down Expand Up @@ -2104,4 +2104,4 @@ bool start_net_services(/*struct mg_mgr *mgr, */struct aqualinkdata *aqdata)
return true;
}

#endif
#endif

0 comments on commit f4ca2a5

Please sign in to comment.