this post was submitted on 25 Jul 2023
1627 points (99.2% liked)

Firefox

17302 readers
764 users here now

A place to discuss the news and latest developments on the open-source browser Firefox

founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 36 points 1 year ago* (last edited 1 year ago) (1 children)

I think the FBI recommends the use of ad blockers for personal safety, let me find that link real quick...

Edit: FOUND IT, Third point under "Tips to Protect Yourself"

[–] [email protected] 6 points 1 year ago (2 children)

Let's just go back to the good old days when the web worked without JS. That would remove a massive amount of attack surface. Might seem a bit shit without the interactivity, though.

[–] [email protected] 1 points 1 year ago (1 children)

Is there any way to make JS safer? E.g. limiting the scope of its access to specific functions (e.g. visual/DOM changes, posting/querying a server only but no local function), or is it just inherently unsafe?

[–] [email protected] 1 points 1 year ago

There's always possibilities to make things safer, but that often comes at a cost of features, features that many web developers (or possibly more likely their employer) would hate to see removed or be inaccessible. At least Firefox has done some great things to keep websites separated so a tracking cookie from tracking service A on site B and site C doesn't quite get the same possibilities to track you as before (IIRC, take it with a grain of salt). But in general I would lean more towards JS sort of being inherently "unsafe".

You can always make yourself a lot more secure by browsing the web through a browser confined to a virtual machine, but most people won't do that. And as with IOT, the S in World Wide Web stands for Security.

[–] [email protected] 1 points 1 year ago

Is there any way to make JS safer? E.g. limiting the scope of its access to specific functions (e.g. visual/DOM changes, posting/querying a server only but no local function), or is it just inherently unsafe?