|
| ▲ | maxwellg 5 days ago | parent | next [-] |
| And the worst is that you need to exactly match the domain and path semantics in order to delete the cookie! Domain is easy enough because there are only two options - available to subdomain and not available to subdomain. But if you have a cookie with the `/path` set and you don't know what value was used, you literally cannot delete that cookie from JS or the backend. You need to either pop open devtools and look at the path or ask the end user to clear all cookies. |
|
| ▲ | HappMacDonald 5 days ago | parent | prev | next [-] |
| Is there a way for JS to see the attributes for each value?
Because presumably setting an expire time in the past and iterating over every used set of attributes would get the job done to delete the cookie.
Iterating over all possible (plausible?) attributes may also work, but knowing the specific attributes set would narrow that list of erasing writes to issue. |
| |
| ▲ | kijin 4 days ago | parent [-] | | No, there isn't. All you get a list of values that are valid for the current page. Same on the server side. If you're ever in a situation where you need to invalidate all possible instances of a cookie, it's easier to just use a different name. |
|
|
| ▲ | sieabahlpark 5 days ago | parent | prev [-] |
| [dead] |