You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The property HTTPServerRequest.fullURL does not work correctly with HTTP 1.0 (no Host header) or if you pass it an empty host header (e.g., wget --header="Host:"), causing the server to crash in the line url.host = url.host.split(":")[0];, due to url.host being null, the split result having 0 length, and therefore the [0] indexing generating a range violation error.
The text was updated successfully, but these errors were encountered:
The property
HTTPServerRequest.fullURL
does not work correctly with HTTP 1.0 (noHost
header) or if you pass it an empty host header (e.g.,wget --header="Host:"
), causing the server to crash in the lineurl.host = url.host.split(":")[0];
, due tourl.host
being null, the split result having 0 length, and therefore the[0]
indexing generating a range violation error.The text was updated successfully, but these errors were encountered: