Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8206092

HttpCookie.domainMatches() does not match to sub-sub-domain

XMLWordPrintable

    • x86_64
    • windows_10

      A DESCRIPTION OF THE PROBLEM :
      CookiePolicy.ACCEPT_ORIGINAL_SERVER uses the HttpCookie.domainMatches() method to accept a cookie to send. We have sub domain 4th level: c.b.a.com. Cookie which is set for .a.com is not accepted on sending to c.b.a.com.

      Section in the RFC: https://tools.ietf.org/html/rfc6265#section-5.1.3

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Run the provided program



      ACTUAL -
      false

      ---------- BEGIN SOURCE ----------
      import java.io.IOException;
      import java.net.HttpCookie;

      public class Main {
          public static void main(String[] args) throws IOException {
              System.out.print(HttpCookie.domainMatches(".a.com", "c.b.a.com"));
          }
      }
      ---------- END SOURCE ----------

      FREQUENCY : always


            chegar Chris Hegarty
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: