this post was submitted on 02 Apr 2026
198 points (82.4% liked)

Technology

83601 readers
4152 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

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

you are viewing a single comment's thread
view the rest of the comments
[–] Madrigal@lemmy.world 22 points 6 days ago (3 children)

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.

[–] Serinus@lemmy.world 13 points 6 days ago (1 children)

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.

[–] wonderingwanderer@sopuli.xyz 1 points 4 days ago

I use waterfox with all of the privacy and security settings enabled to the max, plus a few extensions like ublock origin, decentraleyes, consent-o-matic, and clearurls.

Not that many sites break. And the ones that do, I don't visit. If you don't need to offer an https option, or you don't work without trackers, I don't need to go to your site. Simple as that.

[–] bleistift2@sopuli.xyz 2 points 5 days ago (1 children)

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.

[–] Madrigal@lemmy.world 3 points 5 days ago

Bug fixing is not a reason to enable massive privacy violations.

[–] Dnb@lemmy.dbzer0.com -1 points 6 days ago (1 children)

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

[–] Madrigal@lemmy.world 7 points 6 days ago (2 children)

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

[–] 3abas@lemmy.world 6 points 6 days ago (1 children)

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

The difference is intent.

[–] Madrigal@lemmy.world 4 points 6 days ago (1 children)

you can send it to a server

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

This is entirely my point.

[–] msage@programming.dev 3 points 6 days ago

They will always allow it as long as you have javascript or any other code.

[–] Dnb@lemmy.dbzer0.com 4 points 6 days ago* (last edited 6 days 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