Skip to content

Commit 90757e4

Browse files
sergeysedoy97keszybz
authored andcommitted
src/util: Add Basic Authorization URL Encoding Support
A client may avoid a login prompt when accessing a basic access authentication by prepending username:password@ to the hostname in the URL. This PR adds support for unsafe ASCII characters in username and password.
1 parent 8da7f16 commit 90757e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ static inline int parse_gid(const char *s, gid_t *ret_gid) {
421421
/* This is a bit more restricted than RFC3986 */
422422
#define URL_PROTOCOL_FIRST ALPHABET_LOWER
423423
#define URL_PROTOCOL_CHARSET ALPHABET_LOWER DIGITS "+.-"
424-
#define HOSTNAME_CHARSET ALPHABET DIGITS "-_."
424+
#define HOSTNAME_CHARSET ALPHABET DIGITS "-_.%"
425425

426426
int wait_for_terminate(pid_t pid, siginfo_t *status);
427427

0 commit comments

Comments
 (0)