diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-20 17:36:06 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-20 17:36:06 +0200 |
commit | a8e9dbcbf7ddf26b465ee419481889661d9a3435 (patch) | |
tree | da95e92f8c2d72fac99dced0f9505554ad074fb9 /netwerk/base/nsStandardURL.cpp | |
parent | cbef971d5a36e71881c10765cb71df48b0133b1e (diff) | |
download | uxp-a8e9dbcbf7ddf26b465ee419481889661d9a3435.tar.gz |
Do not allow the ^ character to appear in the hostname.
Diffstat (limited to 'netwerk/base/nsStandardURL.cpp')
-rw-r--r-- | netwerk/base/nsStandardURL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/base/nsStandardURL.cpp b/netwerk/base/nsStandardURL.cpp index dff4ecbc03..7317240c2c 100644 --- a/netwerk/base/nsStandardURL.cpp +++ b/netwerk/base/nsStandardURL.cpp @@ -575,7 +575,7 @@ nsStandardURL::ValidIPv6orHostname(const char *host, uint32_t length) } const char *end = host + length; - if (end != net_FindCharInSet(host, end, CONTROL_CHARACTERS " #/:?@[\\]*<>|\"")) { + if (end != net_FindCharInSet(host, end, CONTROL_CHARACTERS " #/:?@[\\]*<>|\"^")) { // We still allow % because it is in the ID of addons. // Any percent encoded ASCII characters that are not allowed in the // hostname are not percent decoded, and will be parsed just fine. |