]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cookie: lowercase the domain names before PSL checks
authorDaniel Stenberg <daniel@haxx.se>
Thu, 23 Nov 2023 07:15:47 +0000 (08:15 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 23 Nov 2023 09:08:56 +0000 (10:08 +0100)
Reported-by: Harry Sintonen
Closes #12387

lib/cookie.c

index 568cf537ad1b1fb0fabea9f174e3636e56d2a544..9095cea3e97f229f2466bed8c75c48f3c7a646d8 100644 (file)
@@ -1027,15 +1027,23 @@ Curl_cookie_add(struct Curl_easy *data,
    * dereference it.
    */
   if(data && (domain && co->domain && !Curl_host_is_ipnum(co->domain))) {
-    const psl_ctx_t *psl = Curl_psl_use(data);
-    int acceptable;
-
-    if(psl) {
-      acceptable = psl_is_cookie_domain_acceptable(psl, domain, co->domain);
-      Curl_psl_release(data);
+    bool acceptable = FALSE;
+    char lcase[256];
+    char lcookie[256];
+    size_t dlen = strlen(domain);
+    size_t clen = strlen(co->domain);
+    if((dlen < sizeof(lcase)) && (clen < sizeof(lcookie))) {
+      const psl_ctx_t *psl = Curl_psl_use(data);
+      if(psl) {
+        /* the PSL check requires lowercase domain name and pattern */
+        Curl_strntolower(lcase, domain, dlen + 1);
+        Curl_strntolower(lcookie, co->domain, clen + 1);
+        acceptable = psl_is_cookie_domain_acceptable(psl, lcase, lcookie);
+        Curl_psl_release(data);
+      }
+      else
+        acceptable = !bad_domain(domain, strlen(domain));
     }
-    else
-      acceptable = !bad_domain(domain, strlen(domain));
 
     if(!acceptable) {
       infof(data, "cookie '%s' dropped, domain '%s' must not "