Microsoft is running one of the largest corporate espionage operations in modern history. Every time any of LinkedIn’s one billion users visits linkedin.com, hidden code searches their computer for installed software, collects the results, and transmits them to LinkedIn’s servers and to third-party companies including an American-Israeli cybersecurity firm.

https://news.ycombinator.com/item?id=47613981

  • Madrigal@lemmy.world
    link
    fedilink
    English
    arrow-up
    32
    arrow-down
    1
    ·
    18 hours ago

    Here’s the information a web server needs to deliver content to a browser:

    • The requested resource
    • An IP address
    • User credentials (sometimes)

    Everything else is a fucking security hole. There’s no good reason for servers to know what extensions you have installed, what OS you’re running, the dimensions of your browser window, where your mouse cursor is positioned, or any one of a thousand other data points that browsers freely hand over.

    • bleistift2@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      3
      ·
      4 hours ago

      The browser can never know what information is needed for a certain use case. So it needs to be permissive in order to not break valid uses.

      For instance, your list does not include the things a user clicks on the website. But that’s exactly the info I needed to log recently. A user was complaining that dropdowns would close automatically. We quickly reached the assumption that something was sending two click events. In order to prove that, I started logging the users’ clicks. If there were two in the same millisecond, then it’s definitely not a bug but a hardware (or driver or OS or whatever) issue.

    • Serinus@lemmy.world
      link
      fedilink
      English
      arrow-up
      12
      arrow-down
      2
      ·
      15 hours ago

      There are absolutely reasons. Firefox is done by a reasonable job of anti-fingerprinting, and it’s a fine line to walk to disable as many of those indicators as possible without breaking sites.

      Browsers do give away too much, but at least Firefox is working on it. And it’s not extremely straightforward.

    • Dnb@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      2
      ·
      10 hours ago

      If the site doesn’t know the window width of can’t react to mobile or desktop users automatically or scale elements/ change to best for your display.

      You need mouse input for hovering effects as well

      • lambalicious@lemmy.sdf.org
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        1
        ·
        4 hours ago

        False. Browsers can announce themselves as desktop or mobile, or even advertise pre-determined fake window and screen sizes for this purpose (in Firefox it’s called “letterboxed” in the hidden settings). There is no need for a server to have any of this information anyway - either the design of the webpage should be responsive by default, or the server can send specifically whichever files for styles the browser specifically asks for, perhaps falling back to a “all.css” or something.

      • Madrigal@lemmy.world
        link
        fedilink
        English
        arrow-up
        11
        arrow-down
        2
        ·
        10 hours ago

        That can all be done 100% client side. The server does not need this information.

        • 3abas@lemmy.world
          link
          fedilink
          English
          arrow-up
          7
          arrow-down
          2
          ·
          10 hours ago

          If you can do it client side, you can send it to a server…

          The difference is intent.

          • Madrigal@lemmy.world
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            10 hours ago

            you can send it to a server

            Yes, because web browsers, under current web architecture, allow this.

            This is entirely my point.

            • 3abas@lemmy.world
              link
              fedilink
              English
              arrow-up
              1
              ·
              2 hours ago

              How would they prevent it? If they allow your app to read a value client side, it can do whatever it wants with it, including sending it.

              If your app needs to present different behavior based on user settings, it needs to read it.

            • vacuumflower@lemmy.sdf.org
              link
              fedilink
              English
              arrow-up
              1
              ·
              4 hours ago

              They allow this because they are being developed to allow this.

              Browsers that don’t allow this in a Web-like system without such functionality (like Gemini) can be written in two days or a week if you don’t hurry.

              Or at least take as long as Mosaic or Arena took to become usable.

              Enormous resources are being invested into continued development of a platform where users provide valuable feedback.

              By the way, ML is long past the point where that data could even be interpreted ambiguously. Those who have the data know exactly who you are and probably some useful traits of what you are thinking the moment you are typing a comment at any big website.

        • Dnb@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          4
          arrow-down
          1
          ·
          edit-2
          10 hours ago

          Ah I read as the Brower doesn’t need that data. I’d say it needs width (maybe height) but that’s it

          But this info talked about in OP is done via client sending the data to a server not the server getting it all the time