Started to get this message when accessing Reddit. I use LibreWolf as a browser, which does indeed provide a more generic user agent to combat fingerprinting, but nothing out of the ordinary either (Mozilla/5.0 (Windows NT 10.0; rv:109.0) Gecko/20100101 Firefox/119.0). Anyone else experiencing this?

Edit: seems to have resolved itself. Thanks for confirming I wasn’t doing anything wrong. Let’s hope this isn’t some new algorithm to test if for insufficient fingerprinting so Reddit can kick ad-resistant users.

  • @ricecake
    link
    38 months ago

    If you’re on a website and you click a button and something happens other than going to a different page or downloading a file, it’s almost always because of JavaScript (JS)

    It’s a programming language that’s built into most browsers that allows for interactive functionality. It’s implemented in a way that typically protects the security of the computer, because it doesn’t have access to the files on the computer or other sensitive things.

    Because it can’t directly check a lot of things, browsers often provide a way for people writing websites to check what capabilities they can use.
    This means there’s a way to ask "can I do 3d graphics using this particular feature?”.
    The intent is so you can let your website handle computers that can’t do what you need, rather than just trying and crashing.

    Sufficiently determined people can ask for all of the various clues that are provided, and use that to make a pretty unique identifier for the computer, which they can then use to track you around the Internet.

    Various ways of fixing this have been proposed, but they all fall short one way or another.
    Either by making the web far less interactive than people have come to expect, making tracking easier but at least they’re not misusing the data, or requiring an unrealistic amount of reworking how the entire web works.