Handling cookies is a minefield

316 points - yesterday at 5:28 PM

Source
  • maxwellg

    yesterday at 10:05 PM

    Cookies are filled with weird gotchas and uncomfortable behavior that works 99.95% of the time. My favorite cookie minefield is cookie shadowing - if you set cookies with the same name but different key properties (domain, path, etc.) you can get multiple near-identical cookies set at once - with no ability for the backend or JS to tell which is which.

    Try going to https://example.com/somepath and entering the following into the browser console:

      document.cookie = "foo=a"; 
      document.cookie = "foo=b; domain=.example.com";
      document.cookie = "foo=c; path=/somepath";
      document.cookie
    
    I get

      'foo=c; foo=a; foo=b'

      • treflop

        today at 12:43 AM

        At work, whoever designed our setup put the staging and dev environments on the same domain and the entire massive company has adopted this pattern.

        What a colossal mistake.

          • NavinF

            today at 3:37 AM

            Yep. Even within the prod environment it's ideal to have a separate domain (as defined by the Public Suffix List) for sketchy stuff like files uploaded by users. Eliminates a whole class of security issues and general fuckery

            • teaearlgraycold

              today at 3:32 AM

              For the juniors reading this, here's what you do:

              Buy a second domain, ideally using the same TLD as your production domain (some firewalls and filters will be prejudiced against specific TLDs). Mimic the subdomains exactly as they are in production for staging/dev.

              • anal_reactor

                today at 1:50 AM

                I'm sure this will be replicated in future projects because it's much easier to argue "we're already following this pattern so let's be consistent" than "this pattern is bad and let's not have two ruined projects"

            • spacebanana7

              yesterday at 11:56 PM

              I wonder if this explains a lot of the unusual behaviour that happens when you use multiple accounts on a website in the same browser.

              • teaearlgraycold

                today at 12:40 AM

                Using the path field is a code smell

                  • NBJack

                    today at 12:46 AM

                    Can you elaborate? I'm having a tough time finding references to that. (Disclaimer: I'm not an avid JS developer)

                      • teaearlgraycold

                        today at 1:11 AM

                        For modern applications youā€™ll have better ways to maintain state. As shown they cause trouble in practice. Cookies should be used sparingly.

                          • prokopton

                            today at 2:29 AM

                            If you want to maintain state across navigations and share that state with a server itā€™s the best weā€™ve got.

                              • bpicolo

                                today at 2:38 AM

                                Server can store session state

                                  • telgareith

                                    today at 3:11 AM

                                    Server side session state for more than authentication is way worse than "code smell."

                                    It requires a ping to a shared data source on every request. And, the same one for all of them. No sharding, No split domains... That gets expensive fast!

                • draw_down

                  yesterday at 10:39 PM

                  Yeah, isnā€™t that how you represent a list of values? (Or maybe better to say a collection, not sure if ordering is preserved)

                    • kevincox

                      yesterday at 11:12 PM

                      But if the attributes are exactly the same then the cookies replace each other. So this isn't a general mechanism for representing a list.

                      Not to mention that the way to delete a cookie is sending a replacement cookie that expires in the past. How are you supposed to delete the right cookie here?

                        • maxwellg

                          today at 1:00 AM

                          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

                            today at 12:56 AM

                            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.

                            • sieabahlpark

                              today at 12:06 AM

                              [dead]

                  • kibwen

                    yesterday at 5:58 PM

                    The article mentions Rust's approach, but note that (unlike the other mentioned languages) Rust doesn't ship any cookie handling facilities in the standard library, so it's actually looking at the behavior of the third-party "cookie" crate (which includes the option to percent-encode as Ruby does): https://docs.rs/cookie/0.18.1/cookie/

                      • marumari

                        yesterday at 6:16 PM

                        Thanks for pointing that out -- I've updated the article and given you credit down at the bottom. Let me know if you'd prefer something other than "kibwen."

                        • juped

                          yesterday at 6:06 PM

                          De facto standardization by snapping up good names early!

                            • echelon

                              yesterday at 7:09 PM

                              Not really. A lot of essential third party Rust crates and projects have "weird" names, eg. "nom", "tokio", etc. You can see that from the list of most downloaded crates [1].

                              This one just happens to have been owned and maintained by core Rust folks and used in a lot of larger libraries. This is more the exception than the rule.

                              It's a given that you should do due diligence on crates and not just use the first name that matches your use case. There's a lot of crate name squatting and abandonware.

                              Rust crates need namespacing to avoid this and similar problems going forward.

                              [1] https://crates.io/crates?sort=downloads

                                • codetrotter

                                  yesterday at 8:28 PM

                                  A sibling comment talked about ā€œUwU namesā€. Not sure exactly if they are referring to ā€œtokioā€ or something else. But if itā€™s tokio, they might find this informative:

                                  > I enjoyed visiting Tokio (Tokyo) the city and I liked the "io" suffix and how it plays w/ Mio as well. I don't know... naming is hard so I didn't spend too much time thinking about it.

                                  https://www.reddit.com/r/rust/comments/d3ld9z/comment/f03lnm...

                                  From the original release announcement of tokio on r/rust on Reddit.

                                  And also to the sibling commenter, if tokio is a problematic name to you:

                                  Would either of the following names be equally problematic or not?

                                  - Chicago. Code name for Windows 95, and also the name of a city in the USA. https://en.wikipedia.org/wiki/Development_of_Windows_95 https://en.wikipedia.org/wiki/Chicago

                                  - Oslo. Name of a team working on OpenStack, and also appears in their package names. Oslo is the capital of Norway. https://wiki.openstack.org/wiki/Oslo https://en.wikipedia.org/wiki/Oslo

                                  If yes, why? If no, also why?

                                    • mardef

                                      yesterday at 9:17 PM

                                      Just want to point out that location names are used for codenames because they cannot be trademarked

                                      Big tech uses them instead of wasting legal time and money having to clear a new name that's temporary or non-public.

                                      Changing the name to Tokio removes this benefit and still leaves it disconnected from its purpose.

                                        • qingcharles

                                          yesterday at 10:36 PM

                                          The name of the city is ę±äŗ¬ -- anything in Latin characters is a rough transliteration. Tokio was the common spelling in European texts until some time last century, and is still used regularly in continental Europe.

                                          see also, e.g. Tokio Hotel

                                            • Dilettante_

                                              yesterday at 10:42 PM

                                              A reference to Tokio Hotel was not on my HN bingo card

                                            • labster

                                              today at 12:17 AM

                                              Tokio is a different (masculine) name in Japanese, pronounced quite differently. /tokŹ²io/ vs. /toĢžĖkŹ²oĢžĖ/.

                                              https://en.m.wikipedia.org/wiki/Tokio_(given_name)

                                                • j16sdiz

                                                  today at 3:05 AM

                                                  We are talking about the spelling centuries ago, when the romanisation were less standardised

                                      • samatman

                                        yesterday at 9:14 PM

                                        [flagged]

                                    • dangsux

                                      yesterday at 7:22 PM

                                      [dead]

                                      • littlestymaar

                                        yesterday at 8:36 PM

                                        > Rust crates need namespacing to avoid this and similar problems going forward.

                                        It hasn't been implemented despite crowd demanding it on HN for years because it won't solve the problem (namespace squatting is going to replace name squatting and tada! you're back to square one with an extra step).

                                          • Macha

                                            yesterday at 8:46 PM

                                            I do agree that people will assume xyz/xyz is more authoriative than some-org/xyz, but I think there is benefit to knowing that everything under xyz/* has a single owner. The current approach is to name companion crates like xyz_abc but someone else could come along with xyz_def and it's not immediately obvious that xyz_abc has the same owner as xyz but xyz_def does not.

                                            • Illniyar

                                              yesterday at 9:01 PM

                                              Solved the problem almost completely in npm. Sure you can't search for a name of a company or a project and expect it to be related to the company or project. But there's no way to solve that.

                                              But once you know a namespace is owned by a company or project, you can know that everything under it is legit. Which solves the vast majority of squatting and impersonation problems.

                                              Also you know that everything under "node" for example is part of the language.

                                                • eru

                                                  today at 1:38 AM

                                                  > Sure you can't search for a name of a company or a project and expect it to be related to the company or project. But there's no way to solve that.

                                                  There's a way to solve it partially: you can have a special part of your namespace tied to domains and require that eg com.google.some-package be signed by a certificate that can also sign some-package.google.com

                                                  Of course, there's no guarantee that https://company.com belongs to the company, but the public has already developed ways of coping with that.

                                                  (I specifically suggest doing that only to part of your namespace, because you still want people to be able to upload packages without having to register a domain first.)

                                              • rapind

                                                today at 12:05 AM

                                                There are problems it does solve though. Itā€™s incomprehensible that we get so many new package managers that fail to learn from the bajillion that came before.

                                                • dpcx

                                                  yesterday at 9:09 PM

                                                  php deals with this by using the username/organization name of a repository as the namespace name of packages. At least then you're having to squat something further up the food chain.

                                                  • preisschild

                                                    today at 12:51 AM

                                                    Why not do it like go does and use the git hosting domain as a prefix (like github.com/org/project)?

                                                      • HappMacDonald

                                                        today at 12:59 AM

                                                        I recall in the Elm community there was a lot of hooplah around the package system aligning too much with a single repo provider (github) so that might be one disincentive there.

                                                        • azornathogron

                                                          today at 1:05 AM

                                                          It doesn't have to be git either - a few version control systems are supported. See https://go.dev/ref/mod#vcs

                                                          And it doesn't have to be the direct domain+path of the repository, it can be some URL where you put a metadata file that points to the source repo.

                                      • 0xbadcafebee

                                        yesterday at 8:00 PM

                                        Did anyone else notice that the HTTP protocol embeds within it ten-thousand different protocols? Browsers and web servers both "add-on" a ton of functionality, which all have specifications and de-facto specifications, and all of it is delivered through the umbrella of basically one generic "HTTP" protocol. You can't have the client specify what version of these ten-thousand non-specifications it is compatible with, and the server can't either. We can't upgrade the "specs" because none of the rest of the clients will understand, and there won't be backwards-compatibility. So we just have this morass of random shit that nobody can agree on and can't fix. And there is no planned obsolescence, so we have to carry forward whatever bad decisions we made in the past.

                                          • tyleo

                                            yesterday at 8:34 PM

                                            Tbh Iā€™ve made peace with this world and I might even enjoy it more than the planned obsolescence one.

                                              • eru

                                                today at 1:39 AM

                                                That was the model that Microsoft used at the height of their power and dominance in the 1990s and 2000s.

                                            • Analemma_

                                              yesterday at 9:50 PM

                                              This is also the fault of shit-tastic middleware boxes which block any protocol they don't understand-- because, hey, it's "more secure" to default-fail, right?-- so every new type of application traffic until the end of time has to be tunneled over HTTP if it wants to work over the real Internet.

                                                • yesterday at 10:56 PM

                                          • jeffreyrogers

                                            yesterday at 7:33 PM

                                            About 10 years ago I implemented cookie based sessions for a project I was working on. I had a terrible time debugging why auth was working in Safari but not Chrome (or vice-versa, can't remember). Turned out that one of the browsers just wouldn't set cookies if they didn't have the right format, and I wasn't doing anything particularly weird, it was a difference of '-' vs '_' if I recall correctly.

                                              • hombre_fatal

                                                yesterday at 8:30 PM

                                                IIRC there is (or was?) a difference in case-sensitivity between Safari and Chrome, maybe with the Set-Cookie header? I've run into something before which stopped me from using camelCase as cookie keys.

                                                Can't seem to find the exact issue from googling it.

                                                • yesterday at 8:26 PM

                                              • gweinberg

                                                today at 12:14 AM

                                                I got the impression that almost as soon as they were introduced people thought the only sensible use of cookies is to set an opaque token so the server can recognize the client when it sees it again, and store everything else server side.

                                                I don;t understand why it's a problem that the client (in principle) can handle values that the server will never send. Just don't send them, and you don;t have to worry about perplexing riddles like "but what would happen if I did?"

                                                • AshleysBrain

                                                  yesterday at 6:20 PM

                                                  Cookies seem to be a big complicated mess, and meanwhile are almost impossible to change for backwards-compatibility reasons. Is this a case to create a new separate mechanism? For example a NewCookie mechanism could be specified instead, and redesigned from the ground-up to work consistently. It could have all the modern security measures built-in, a stricter specification, proper support for unicode, etc.

                                                    • flotwig

                                                      yesterday at 6:34 PM

                                                      It's funny that you mention NewCookie, there is actually a deprecated Set-Cookie2 header already: https://stackoverflow.com/q/9462180/3474615

                                                        • h4ck_th3_pl4n3t

                                                          yesterday at 10:50 PM

                                                          Imagine pwning a frontend server or proxy, spawning an http/s server on another port, and being able to intercept all cookies and sessions of all users, even when you couldn't pwn the (fortified) database.

                                                          This could have a huge advantage, because if you leave the original service untouched on port 80/443, there is no alert popping up on the defending blueteam side.

                                                          This gives me an idea for a project...

                                                      • RadiozRadioz

                                                        yesterday at 6:28 PM

                                                        NewCookie is, roughly, what browser Local Storage is.

                                                        At least for some use cases. Of course, it doesn't directly integrate with headers.

                                                          • graypegg

                                                            yesterday at 6:33 PM

                                                            I think one important use case we have for cookies is "Secure; HttpOnly" cookies. Making a token totally inaccessible from JS, but still letting the client handle the session is a use case that localStorage can't help with. (Even if there's a lot of JWTs in localStorage out there.)

                                                              • emn13

                                                                yesterday at 8:04 PM

                                                                However, potentially a localStorage (and sessionStorage!) compatible cookie-replacement api might allow for annotating keys with secure and/or HttpOnly bits? Keeping cookies and localStorage in sync is a hassle anyhow when necessary, so having the apis align a little better would be nice. Not to mention that that would have the advantage of partially heading off an inevitable criticism - that users don't want yet another tracking mechanism. After all, we already have localStorage and sessionStorage, and they're server-readable too now, just indirectly.

                                                                On the other hand; the size constraints on storage will be less severe than those on tags in each http request, so perhaps this is being overly clever with risks of accidentally huge payloads suddenly being sent along with each request.

                                                                  • xp84

                                                                    yesterday at 8:49 PM

                                                                    I think if I were implementing a webapp from scratch today I'd use one single Session ID cookie, store sessions in Redis (etc) indefinitely (they really aren't that big), and for things meant to be stored/accessed on the frontend (e.g. "has dismissed some dumb popup") just use local storage. Dealing with anything to do with cookies is indeed incredibly painful.

                                                                    • mdaniel

                                                                      yesterday at 8:25 PM

                                                                      > and they're server-readable too now, just indirectly.

                                                                      Could you point me to more reading about this? It's the first time I've heard of it

                                                                        • graypegg

                                                                          yesterday at 8:47 PM

                                                                          I think they mean that you can always send back the content of a localstorage property with javascript grabbing the value and sending another request back with it in the body. Since the front end is going to run any javascript the server sends it (disregarding adblockers at least), it's sort of a more indirect version of Set-Cookie.

                                                                            • emn13

                                                                              yesterday at 9:03 PM

                                                                              Yeah, that's what I meant. There's no built in support; but it's indirectly readable since client-side JS can read it.

                                                                                • j16sdiz

                                                                                  today at 3:11 AM

                                                                                  This miss the "HttpOnly" part, which prevents javascript (think script injection vulnerability) from touching this part of the storage

                                                          • notatoad

                                                            yesterday at 6:39 PM

                                                            i think the main problem there is that cookies are so intractibly tied up with tracking, any attempt to create better cookies now will get shut down by privacy advocates who simply don't want the whole concept to exist.

                                                            we're stuck with cookies because they exist.

                                                              • doctorpangloss

                                                                yesterday at 7:48 PM

                                                                Every privacy advocate I know hands over exquisitely detailed private and personal information to Google and/or Apple. It seems unfair to generalize as ā€œprivacy advocatesā€ so much as it is people who are anti-ads.

                                                                Being anti-ads is a valid opinion. It has less intellectual cover than pro ā€œprivacyā€ though.

                                                            • nox101

                                                              today at 3:10 AM

                                                              the new thing should be called "cupcakes" or "candies" or "snacks" or "munchies"

                                                              • bob1029

                                                                yesterday at 7:02 PM

                                                                The DOM & URL are the safest places to store client-side state. This doesn't cover all use cases, but it does cover the space of clicking pre-authorized links in emails, etc.

                                                                I spend a solid month chasing ghosts around iOS Safari arbitrarily eating cookies from domains controlled by our customers. I've never seen Google/Twitter/Facebook/etc domains lose session state like this.

                                                                  • nox101

                                                                    today at 3:14 AM

                                                                    If I open a second window or tab I expect when I go to 'myemail.com' that it knows who I am and shows me my account even though the url in the 2nd tab doesn't have any extra info in the URL

                                                                    • marumari

                                                                      yesterday at 9:16 PM

                                                                      Safari is a lot more strict about cookies than Chromium or Firefox, it will straight up drop or ignore (or, occasionally, truncate) cookies that the other two will happily accept.

                                                                      I had hoped when writing this article that Google would look at Safari and see that it was always strict about feel comfortable about changing to be the same. But doing so now would unfortunately break too many things for too many users.

                                                                  • pavel_lishin

                                                                    yesterday at 6:25 PM

                                                                    That feels like that XKCD comic about now there being 15 standards.

                                                                  • cruffle_duffle

                                                                    yesterday at 6:24 PM

                                                                    Needs a better name than NewCookie though. Suggestions include SuperCookie, UltraCookie or BetterCookie

                                                                    Or to be slightly more serious avoid calling it a cookie and call it something else. Too much baggage surrounding the word cookie.

                                                              • paol

                                                                yesterday at 5:55 PM

                                                                Cookie header parsing is a shitshow. The "standards" don't represent what actually exists in the wild, each back-end server and/or library and/or framework accepts something different, and browsers do something else yet.

                                                                If you are in complete control of front-end and back-end it's not a big problem, but as soon as you have to get different stuff to interoperate it gets very stupid very fast.

                                                                • IgorPartola

                                                                  today at 12:56 AM

                                                                  Cookies need to die. Their only legitimate use is with for which we have the Authentication header. Having a standard way to authenticate into a website in a browser would be amazing, just too bad that Basic and Digest auth wasnā€™t good enough at the time.

                                                                  As a bonus we could get Persona-style passwordless future.

                                                                    • j16sdiz

                                                                      today at 3:15 AM

                                                                      How about user preference without logging in? Are you suggesting create a trillion throwaway accounts?

                                                                      • wdr1

                                                                        today at 1:11 AM

                                                                        Why are first-party cookies bad?

                                                                          • IgorPartola

                                                                            today at 1:38 AM

                                                                            They are not bad they just are unnecessary. If your application uses local state, use local storage. If you store session data on the server, identify the user using the Authorization header. Why send arbitrary strings back and forth often with requests that donā€™t need them. Plus the technology is clearly rotten. They never got namespacing snd expiration right so you can just do weird stuff with them. Also, CSRF wouldnā€™t be a thing if cookies werenā€™t. This is like saying ā€œwhy is finger/gopher/etc. bad?ā€ They are not exactly bad but they are obsolete.

                                                                              • baggy_trough

                                                                                today at 1:42 AM

                                                                                How would you use the Authorization header to implement server side session data?

                                                                                  • seandoe

                                                                                    today at 3:53 AM

                                                                                    I think they mean storing an identifier in local or session storage and then sending it in the header.

                                                                    • burntcaramel

                                                                      yesterday at 11:35 PM

                                                                      Re Safariā€™s networking code being closed source, a good substitute might be the Swift port of Foundation. You can see checks for control and delete characters here: https://github.com/swiftlang/swift-corelibs-foundation/blob/...

                                                                      • trevor-e

                                                                        yesterday at 10:17 PM

                                                                        I came across a similar issue when experimenting with the Crystal language. I thought it would be fun to build a simple web scraper to test it out, only to find the default HTTP client fails to parse many cookies set by the response and aborts.

                                                                        • 0x073

                                                                          yesterday at 6:32 PM

                                                                          IT IS a mess, but I never saw json inside a cookie. For json I use local storage or indexeddb.

                                                                            • robgibbons

                                                                              yesterday at 7:12 PM

                                                                              In both cases (cookie vs localStorage) you're really just storing your data as a string value, not truly a JSON object, so whether you use a cookie or localStorage is more dependent on the use case.

                                                                              If you only ever need the stored data on the client, localStorage is your pick. If you need to pass it back to the server with each request, cookies.

                                                                                • 0x073

                                                                                  yesterday at 8:12 PM

                                                                                  Combine local storage with service worker, so you pass the data to the server if needed. Completely without setting cookies.

                                                                                    • withinboredom

                                                                                      yesterday at 9:18 PM

                                                                                      And if I don't want any javascript to see my values, ever? Or how do you handle CSRF?

                                                                                  • recursive

                                                                                    yesterday at 7:41 PM

                                                                                    JSON is explicitly a string serialization format.

                                                                                      • robgibbons

                                                                                        yesterday at 8:00 PM

                                                                                        Right, I meant it's not a JavaScript object. It's serialized into a string in any case, no matter which API you're stuffing it into. So it's a bit of a non-sequitur for the parent to suggest that it's somehow weird to store JSON in a cookie, but not in localStorage. It's all just strings.

                                                                                          • recursive

                                                                                            yesterday at 9:42 PM

                                                                                            My point is that there really is no such thing as "truly a JSON object".

                                                                                        • yesterday at 8:08 PM

                                                                                  • hinkley

                                                                                    yesterday at 7:55 PM

                                                                                    Good way to hit max header length issues. Ask me how I know.

                                                                                      • osrec

                                                                                        yesterday at 8:08 PM

                                                                                        How?

                                                                                          • hinkley

                                                                                            yesterday at 8:55 PM

                                                                                            Well you see when a front end developer and a backend developer hate each other very much, they do a special hug and nine days later a 400 request header or cookie too large error is born.

                                                                                            (Seriously though, someone trying to implement breadcrumbs fe-only)

                                                                                            • mdaniel

                                                                                              yesterday at 8:30 PM

                                                                                              I'm not them, but that 419 pattern in the logs is burned into my adrenaline response: https://duckduckgo.com/?t=ffab&q=nginx+419+cookie+header&ia=...

                                                                                      • lambdaone

                                                                                        yesterday at 8:10 PM

                                                                                        You're really going to hate it when you learn about JSON Web Tokens, which exist exactly to hack past this sort of problem.

                                                                                        • ricardo81

                                                                                          yesterday at 7:34 PM

                                                                                          Are they ubiquitous? I'm no client side guru, I know I could look at makeuseof etc, but why not ask some professionals instead.

                                                                                            • loa_in_

                                                                                              yesterday at 9:55 PM

                                                                                              At the very least localstorage is supported across the board

                                                                                                • j16sdiz

                                                                                                  today at 3:21 AM

                                                                                                  No. It is disabled in many browsers when opened in private mode. Where you can have session cookies

                                                                                          • yesterday at 7:19 PM

                                                                                        • jerf

                                                                                          yesterday at 5:52 PM

                                                                                          And the article isn't even about the proliferation of attributes cookies have, that browsers honor, and in some cases are just mandatory. I was trying to explain SameSite to a coworker, and scrolled down a bit... https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#co... wait, cookie prefixes? What the heck are those? The draft appears to date to 2016, but I've been trying to write secure cookie code for longer than that, hadn't heard of it until recently, and I can't really find when they went in to browsers (because there's a lot more drafts than there are implemented drafts and the date doesn't mean much necessarily), replies explaining that welcome.

                                                                                          Seems like every time I look at cookies they've grown a new wrinkle. They're just a nightmare to keep up with.

                                                                                            • marcosdumay

                                                                                              yesterday at 6:32 PM

                                                                                              Well, prefixes are opt-in. You don't have to keep-up with them.

                                                                                              The only recent large problem with cookies were to changes to avoid CSRF, those were opt-out, but they were also extremely overdue.

                                                                                              All of the web standards are always gaining new random features. You don't have to keep-up with most of them. They do look like bad abstractions, but maybe it's just the problem that is hard.

                                                                                              • minitech

                                                                                                yesterday at 6:11 PM

                                                                                                > https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#co... wait, cookie prefixes? What the heck are those?

                                                                                                https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#co...

                                                                                                > For more information about cookie prefixes and the current state of browser support, see the Prefixes section of the Set-Cookie reference article.

                                                                                                https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Se...

                                                                                                (Cookie prefixes have been widely supported since 2016 and more or less globally supported since 2019.)

                                                                                                Theyā€™re backwards-compatible, so if your cookie need meets the requirements for the `__Host-` prefix, you should use `__Host-`.

                                                                                                  • jerf

                                                                                                    yesterday at 6:18 PM

                                                                                                    [flagged]

                                                                                                      • minitech

                                                                                                        yesterday at 6:35 PM

                                                                                                        I was answering your question about when they went into browsers with a link, and summarizing it in a parenthetical. So much for ā€œreplies explaining that welcomeā€, I guess.

                                                                                                          • olddustytrail

                                                                                                            yesterday at 7:26 PM

                                                                                                            It's the first part of your reply they're responding to, where it looks like you've answered their rhetorical question with the exact link they used to illustrate it.

                                                                                                            I'd guess you just screwed up your copy paste and didn't notice.

                                                                                            • deathanatos

                                                                                              yesterday at 9:16 PM

                                                                                              That is a bit of a minefield, I agreeā€¦

                                                                                              The way around this, as a developer, is URL-safe-base64 encode the value. Then you have a bytes primitive & you can use whatever inner representation your heart desires. But the article does also note that you're not 100% in control, either. (Nor should you be, it is a user agent, after all.)

                                                                                              I do wish more UAs opted for "obey the standard" over "bytes and an prayer on the wire". Those 400 responses in the screenshots ā€¦ they're a conforming response. This would have been better if headers had been either UTF-8 from the start (but there are causality problems with that) or ASCII and then permitted to be UTF-8 later (but that could still cause issues since you're making values that were illegal, legal).

                                                                                                • johnp_

                                                                                                  yesterday at 9:26 PM

                                                                                                  > URL-safe-base64

                                                                                                  And make sure to specify what exactly you mean by that. base64url-encoding is incompatible with base64+urlencoding in ~3% of cases, which is easily missed during development, but will surely happen in production.

                                                                                                    • Retr0id

                                                                                                      yesterday at 10:17 PM

                                                                                                      Isn't it a lot more than 3%? I don't think I've heard anyone say url-safe-base64 and actually mean urlencode(base64(x))

                                                                                                        • deathanatos

                                                                                                          today at 2:43 AM

                                                                                                          ā€¦ yeah. I assume they're getting that from doing 3/64, but for uniform bytes, you're rolling that 3/64 chance every base64-output-character. (And bytes are hardly uniform, either ā€¦ TFA's example input of JSON is going to skew towards that format's character set.)

                                                                                                      • deathanatos

                                                                                                        today at 2:40 AM

                                                                                                        oh, geez. No, just base64, using the URL safe alphabet. (The obvious 62 characters, and "-_" for the last two.

                                                                                                        It's called "urlsafe base64", or some variant, in the languages I work in.

                                                                                                        > This encoding may be referred to as "base64url".

                                                                                                        https://datatracker.ietf.org/doc/html/rfc4648#section-5

                                                                                                        But yeah, it's not base64 followed by a urlencode. It's "just" base64-with-a-different-alphabet.

                                                                                                • hinkley

                                                                                                  yesterday at 5:57 PM

                                                                                                      Firefox accepts five characters which RFC recommends that servers not send:
                                                                                                  
                                                                                                      0x09 (horizontal tab)
                                                                                                      0x20 (spaces)
                                                                                                      0x22 (double quotes)
                                                                                                      0x2C (commas)
                                                                                                      0x5C (backslashes)
                                                                                                  
                                                                                                  I agree with at least some of these. Cookies without commas? Quotes?

                                                                                                    • remram

                                                                                                      yesterday at 6:08 PM

                                                                                                      Quotes in the value when quotes delimit the value? Yeah that seems dangerous to me.

                                                                                                        • anamexis

                                                                                                          yesterday at 6:54 PM

                                                                                                          Quotes don't delimit the value.

                                                                                                            • pimlottc

                                                                                                              yesterday at 7:00 PM

                                                                                                              Per the section 4.1.1 rules quoted in the article, cookie values can be optionally quoted:

                                                                                                              > cookie-value = cookie-octet / ( DQUOTE cookie-octet DQUOTE )

                                                                                                                • anamexis

                                                                                                                  yesterday at 7:22 PM

                                                                                                                  That is true, but in that case they are part of the value itself, they're not doing anything special:

                                                                                                                  > Per the grammar above, the cookie-value MAY be wrapped in DQUOTE characters. Note that in this case, the initial and trailing DQUOTE characters are not stripped. They are part of the cookie-value, and will be included in Cookie header fields sent to the server.

                                                                                                                    • kangalioo

                                                                                                                      yesterday at 10:56 PM

                                                                                                                      Why does the specification specifically mention them, then?

                                                                                                                        • anamexis

                                                                                                                          yesterday at 11:11 PM

                                                                                                                          To clarify that by the spec, double quotes are allowed in the cookie value, but only at the beginning and end.

                                                                                                                          As for why that is, I have no idea.

                                                                                                                      • pimlottc

                                                                                                                        yesterday at 7:51 PM

                                                                                                                        Ah, thanks for the clarification!

                                                                                                        • yesterday at 7:59 PM

                                                                                                      • AlienRobot

                                                                                                        yesterday at 7:17 PM

                                                                                                        >everything behaves differently, and it's a miracle that [it] work at all.

                                                                                                        The web in a nutshell.

                                                                                                          • mdaniel

                                                                                                            yesterday at 8:33 PM

                                                                                                            Browsers: what it would look like if Postel's Law were somehow made manifest in C++ and also essential to modern life

                                                                                                        • hinkley

                                                                                                          yesterday at 7:53 PM

                                                                                                          One of the things Iā€™ve always found frustrating about cookies is that you have to do your own encoding instead of the API doing it for you. Iā€™m sure someone somewhere does but too often Iā€™m doing my own urlencode calls.

                                                                                                            • mdaniel

                                                                                                              yesterday at 8:28 PM

                                                                                                              Encoding is at least solvable, but every browser having their own cookie length versus some standard value makes that some nonsense. Kong actually has a plugin to split (and, of course, recombine) cookies just to work around this

                                                                                                                • hinkley

                                                                                                                  yesterday at 9:43 PM

                                                                                                                  But it's so solvable that I shouldn't have to solve it

                                                                                                          • yesterday at 5:49 PM

                                                                                                            • dekhn

                                                                                                              yesterday at 8:48 PM

                                                                                                              Everything about the web is a minefield. It's an exercise in "how many unnecessary layers can we put between users and their content"?

                                                                                                                • whatever1

                                                                                                                  yesterday at 8:59 PM

                                                                                                                  I have a solution! I just made one more framework!

                                                                                                                  • flockonus

                                                                                                                    yesterday at 9:42 PM

                                                                                                                    What are you implicitly comparing it against?

                                                                                                                      • dekhn

                                                                                                                        yesterday at 9:45 PM

                                                                                                                        Native desktop development.

                                                                                                                • jeffrallen

                                                                                                                  yesterday at 6:21 PM

                                                                                                                  The article mocks Postel's law, but if the setter of the cookie had been conservative in what they sent, there would have been no need for the article...

                                                                                                                    • Sohcahtoa82

                                                                                                                      yesterday at 6:47 PM

                                                                                                                      > The article mocks Postel's law

                                                                                                                      As they should. Postel's Law was a terrible idea and has created minefields all over the place.

                                                                                                                      Sometimes, those mines aren't just bugs, but create gaping security holes.

                                                                                                                      If your client is sending data that doesn't conform to spec, you have a bug, and you need to fix it. It should never be up to the server to figure out what you meant and accept it.

                                                                                                                        • emn13

                                                                                                                          yesterday at 8:10 PM

                                                                                                                          And yet the html5 syntax variation survived (with all it's weird now-codified quirks), and the simpler, stricter xhtml died out. I'm not disagreeing with out; it's just that being flexible, even if it's bad for the ecosystem is good for surviving in the ecosystem.

                                                                                                                            • plorkyeran

                                                                                                                              yesterday at 8:36 PM

                                                                                                                              There was a lot of pain and suffering along the way to html5, and html5 is the logical end state of postel's law: every possible sequence of bytes is a valid html5 document with a well-defined parsing, so there is no longer any room to be more liberal in what you accept than what the standard permits (at least so far as parsing the document).

                                                                                                                                • emn13

                                                                                                                                  yesterday at 9:02 PM

                                                                                                                                  Getting slightly off topic, but I think it's hard to find the right terminology to talk about html's complexities. As you point out, it isn't really a syntax anymore now that literally every sequence is valid. Yet the parsing rules are obviously not as simple as a .* regex. It's syntactically simple, but structurally complex? What's the right term for the complexity represented by how the stack of open elements interacts with self-closing or otherwise special elements?

                                                                                                                                  Anyhow, I can't say I'm thrilled that some deeply nested subtree of divs for instance might be closed by a open-button tag just because they were themselves part of a button, except when... well, lots of exceptions. It's what we have, I guess.

                                                                                                                                  It's also not a (fully) solved problem; just earlier this year I had to work around an issue in the chromium html parser that caused IIRC quadratic parsing behavior in select items with many options. That's probably the most widely used parser in the world, and a really inanely simple repro. I wonder whether stuff like that would slip through as often were the parsing rules at all sane. And of course encapsulation of a document-fragment is tricky due to the context-sensitivity of the parsing rules; many valid DOM trees don't have an HTML serialization.

                                                                                                                          • SilasX

                                                                                                                            yesterday at 7:03 PM

                                                                                                                            You could split the difference with a 397 TOLERATING response, which lets you say "okay I'll handle that for now, but here's what you were supposed to do, and I'll expect that in the future". (j/k it's an April Fool's parody)

                                                                                                                            https://pastebin.com/TPj9RwuZ

                                                                                                                            • rendall

                                                                                                                              yesterday at 6:55 PM

                                                                                                                              I interpret the "liberal" part Postel's Law to mean "do your best to understand it, but that less important than accepting it, possibly returning a helpful error message" and thus "The Go standard library couldn't parse the cookie, leading to cascading failures all the way up the stack" should never be a thing that happens.

                                                                                                                          • marcosdumay

                                                                                                                            yesterday at 6:33 PM

                                                                                                                            The problem with Postel's law is exactly that the sender is never conservative, and will tend to use any detail that most receivers accept.

                                                                                                                              • somat

                                                                                                                                today at 12:34 AM

                                                                                                                                So the problem with Postel's law is that people don't follow Postel's law?

                                                                                                                        • ralmidani

                                                                                                                          yesterday at 7:28 PM

                                                                                                                          Wait til you have a legacy system and a newer system and need to, among other things:

                                                                                                                          - Implement redirects from the old login screen to the new one - Keep sessions in sync - Make sure all internal and external users know how to clear cookies - Remind everyone to update bookmarks on all devices - Troubleshoot edge cases

                                                                                                                          • joshstrange

                                                                                                                            yesterday at 8:04 PM

                                                                                                                            > Apple Support

                                                                                                                            Are we sure the website wasn't just broken normally? I kid, a bit, but good lord does Apple _suck_ at websites. Apple Developer and, more often, App Store Connect is broken for no good reason with zero or a confusing error message.

                                                                                                                            Note: I'm typing this on a M3 Max MBP (via a Magic Keyboard and Magic Mouse) with an iPhone 16 Pro and iPad Mini (N-1 version) on the desk next to me with an Apple Watch Series 10 on my wrist and AirPods Pro in my pocket. I'm a huge Apple fanboy, but their websites are hot garbage.

                                                                                                                              • mdaniel

                                                                                                                                yesterday at 8:37 PM

                                                                                                                                But why wouldn't web pages written in ObjC be just awesome and easy to manage?!

                                                                                                                                https://en.wikipedia.org/wiki/WebObjects

                                                                                                                                I can still remember when they'd purposefully take down their store page for some godforsaken reason. The mind reels

                                                                                                                                  • russelg

                                                                                                                                    today at 12:07 AM

                                                                                                                                    They still do take the store page offline in the leading hours and during a keynote.

                                                                                                                            • jmull

                                                                                                                              yesterday at 6:39 PM

                                                                                                                              > minefield

                                                                                                                              Cookies are a bit of a mess, but if you're going to use them, you can follow the standard and all will be well. Not so much a minefield, but a hammer; you just need to take some care not to hit yourself on the thumb.

                                                                                                                              I guess the confusion here is that the browser is taking on the role of the server in setting the cookie value. In doing so it should follow the same rules any server should in setting a cookie value, which don't generally allow for raw JSON (no double-quote! no comma!).

                                                                                                                              Either use a decent higher-level API for something like this (which will take care of any necessary encoding/escaping), or learn exactly what low-level encoding/escaping is needed. Pretty much the same thing you face in nearly anything to do with information communication.

                                                                                                                                • klysm

                                                                                                                                  yesterday at 7:14 PM

                                                                                                                                  I donā€™t understand how thatā€™s not a minefield, itā€™s easy to go astray?

                                                                                                                                    • jmull

                                                                                                                                      yesterday at 11:10 PM

                                                                                                                                      Well, weā€™re getting into how to choose metaphors here. Not being literal, thereā€™s always room to stretch. Still, you try to choose a metaphor with characteristics congruent with the topic.

                                                                                                                                      With a minefield, you can be doing something perfectly reasonable, with eyes open and even paying attention yet nevertheless it can blow up on you.

                                                                                                                                      Here, though, thereā€™s no special peril. If you just follow the standard everything will be fine.

                                                                                                                                      If this is a minefield, then practically everything in software development is equally a minefield and the metaphor loses its power.

                                                                                                                                      (Later in the article they touch on something that is a minefield ā€” updating dependencies. Thereā€™s probably a good article about that to be written.)

                                                                                                                                      • johnisgood

                                                                                                                                        yesterday at 8:07 PM

                                                                                                                                        Probably just semantics.

                                                                                                                                    • yesterday at 7:21 PM

                                                                                                                                  • khana

                                                                                                                                    yesterday at 9:34 PM

                                                                                                                                    [dead]

                                                                                                                                    • nghia999

                                                                                                                                      yesterday at 7:50 PM

                                                                                                                                      [flagged]

                                                                                                                                      • rendall

                                                                                                                                        yesterday at 7:01 PM

                                                                                                                                        > What servers SHOULD send and what browsers MUST accept are not aligned, a classic example of the tragedy of following Postel's Law.

                                                                                                                                        "Be liberal in what you accept, and conservative in what you send" is precisely the opposite of "SHOULD send MUST accept". This would be an example of the tragedy of not following Postel's Law.

                                                                                                                                        If the specs followed Postel's guidance, it would then have read "Servers MUST send x and browsers SHOULD accept y".

                                                                                                                                        • TheRealPomax

                                                                                                                                          yesterday at 6:22 PM

                                                                                                                                          [comment intended for a different post, but too old to delete]

                                                                                                                                            • recursive

                                                                                                                                              yesterday at 6:27 PM

                                                                                                                                              None of this explicitly has anything specifically to do with HTML.

                                                                                                                                                • TheRealPomax

                                                                                                                                                  yesterday at 7:46 PM

                                                                                                                                                  It sure doesn't, that was a comment for a completely different post. I have no idea why HN posted this comment on this article instead of the PHP 8.4 article I thought I was commenting on O_o

                                                                                                                                                    • jdlshore

                                                                                                                                                      yesterday at 8:42 PM

                                                                                                                                                      Itā€™s happened enough that I suspect thereā€™s a rarely-seen race condition somewhere in the Arc code that runs HN.

                                                                                                                                          • karaterobot

                                                                                                                                            yesterday at 8:18 PM

                                                                                                                                            > Handling cookies is a minefield

                                                                                                                                            I know! You gotta let them cool down first. Learned this the hard way.