Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Set-Cookie path should not be case-insensitive #55795

Open
MegatronKing opened this issue May 21, 2024 · 0 comments
Open

Set-Cookie path should not be case-insensitive #55795

MegatronKing opened this issue May 21, 2024 · 0 comments
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. library-io

Comments

@MegatronKing
Copy link

Because the Uri path is case-sensitive, the path value of Set-Cookie should also be case-sensitive. But I checked the dart code and it was forcibly converted to lowercase.

String parseAttributeValue() {
  int start = index;
  while (!done()) {
    if (s[index] == ";") break;
    index++;
  }
  return s.substring(start, index).trim().toLowerCase();
}

In addition, the browser also maintains case sensitivity when saving the cookie path.

@lrhn lrhn added area-core-library SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries. library-io labels May 21, 2024
@lrhn lrhn added area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. and removed area-core-library SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries. labels Feb 13, 2025
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. library-io
Projects
None yet
Development

No branches or pull requests

2 participants