EDIT: I didn’t realize the anger this would bring out of people. It was supposed to be a funny meme based on recent real-life situations I’ve encountered, not an attack on the EU.

I appreciate the effort of the EU cookie laws. The practice of them just doesn’t live up to the theory of the law. Shady companies are always going to find a way to be shady.

  • DeriHunter@lemmy.world
    link
    fedilink
    arrow-up
    25
    arrow-down
    1
    ·
    10 months ago

    Serious question: I know that there are tracking cookies and the user should be able to decline those,but most sites have an auth cookie that stores you’re credentials. The devs can store it in a different place like local storage but thats really unsecured.what can the devs do in this situation when the user decline all cookies?

    • fosforus
      link
      fedilink
      arrow-up
      40
      arrow-down
      1
      ·
      10 months ago

      Cookies that are crucial for the functioning of the website cannot be disabled by the user.

      • sip@programming.dev
        link
        fedilink
        arrow-up
        12
        arrow-down
        2
        ·
        edit-2
        10 months ago

        well, they can be disabled by the user and the site simply won’t work.

        • shasta@lemm.ee
          link
          fedilink
          arrow-up
          10
          ·
          10 months ago

          He means they are exempt from the EU law that says the use must be presented with the option to disable it

    • Phen@lemmy.eco.br
      link
      fedilink
      arrow-up
      34
      ·
      10 months ago

      The eu rules are mostly about unnecessary cookies. Most web devs just copied whatever everyone else was doing and now there’s this standard of having to accept cookies but the EU doesn’t really enforce it like that

    • Kevin Noodle@lemmy.world
      link
      fedilink
      arrow-up
      11
      ·
      10 months ago

      Usually the prompts are specifically for tracking cookies, not essential ones for login. Alternatives without cookies:

      • URL sessions
      • Tokens
      • OAuth/OIDC third party
      • Local/Session Storage (ditto - mind the risks)
    • nothacking@discuss.tchncs.de
      link
      fedilink
      arrow-up
      4
      ·
      10 months ago

      The GDPR is not “cookie law”, it only prohibits tracking users in a way not essential to the operation of the site using locally stored identifiers (cookies, local storage, indexed DB…)

      Storing a cookie to track login sessions, or color scheme preference does not require asking the user or allowing them to decline.

    • smileyhead@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      8 months ago

      What the dev can do if user decline processing of personal data is not store such personal data in cookies or anywhere.

      Or even better, do not track the user so the consent would only be needed in for example registration form.