urlapi: forbid '|' in host

Closes #21762
This commit is contained in:
tiymat 2026-05-26 22:35:27 -02:30 committed by Daniel Stenberg
parent efdf733bae
commit a8e6f90a69
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 2 additions and 1 deletions

View file

@ -471,7 +471,7 @@ static CURLUcode hostname_check(struct Curl_URL *u, char *hostname,
return ipv6_parse(u, hostname, hlen);
else {
/* letters from the second string are not ok */
len = strcspn(hostname, " \r\n\t/:#?!@{}[]\\$\'\"^`*<>=;,+&()%");
len = strcspn(hostname, " \r\n\t/:#?!@{}[]\\$\'\"^`*<>=;,+&()%|");
if(hlen != len)
/* hostname with bad content */
return CURLUE_BAD_HOSTNAME;