sigh

  • TCB13@lemmy.world
    link
    fedilink
    English
    arrow-up
    44
    arrow-down
    3
    ·
    edit-2
    7 hours ago

    No no, guys Mozilla are the good guys. They never did something nasty like bundling tons of spyware and 3rd party calls with Firefox nor adding unique IDs to every installation. Mozilla also acquired an ad analytics company recently for some reason.

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

        Nothing, not everyone liked it, the only difference is that my comment would result in a shit show of downvotes last week while not people are starting to realize what Mozilla/Firefox really is. Mozilla was never the “all savior” pained them to be and it only took Wireshark and a couple of minutes to see it.

    • irreticent@lemmy.world
      link
      fedilink
      arrow-up
      25
      ·
      12 hours ago

      adding unique IDs to every installation.

      I wasn’t familiar with that so I did a quick search. For anyone else interested here is some info about it:

      “Internet users who download the Firefox web browser from the official Mozilla website get a unique identifier attached to the installer that is submitted to Mozilla on install and first run.”

      […]

      “Firefox users who prefer to download the browser without the unique identifier may do so in the following two ways:”

      1. Download the Firefox installer from Mozilla’s HTTPS repository (formerly the FTP repository).

      2. Download Firefox from third-party download sites that host the installer, e.g., from Softonic.

      “The downloaded installers do not have the unique identifier, as they are identical whenever they are downloaded.”

      In the comments section someone says:

      “It seems that getting Firefox from GNU/Linux repos (Debian, etc.), doesn’t come with unique IDs.”

      • TCB13@lemmy.world
        link
        fedilink
        English
        arrow-up
        5
        ·
        7 hours ago

        Yeah repositories and FTP don’t include that, but it is kind shady that the first way to get it (website) for the majority of regular users (Windows/macOS) has a unique ID - after all this is the company that goes all in for privacy…

    • irreticent@lemmy.world
      link
      fedilink
      arrow-up
      9
      ·
      12 hours ago

      bundling tons of spyware

      I couldn’t find any info about this with a quick search. Do you have any links to where I can read more about this?

      • TCB13@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        edit-2
        7 hours ago

        Just fire up Wireshark and inspect what Firefox calls, a lot of calling home and even if you change all the settings and config parameters to something sane it will still contact a 3rd party analytics company. Mozilla also acquired an ad analytics company recently for some reason.

      • MonkderVierte@lemmy.ml
        link
        fedilink
        arrow-up
        10
        arrow-down
        2
        ·
        edit-2
        11 hours ago

        I have this in user.js:

        // settings user-test-programm
        user_pref("app.shield.optoutstudies.enabled", false);
        
        // dont use me as guinea pig
        user_pref("app.normandy.enabled", false);
        user_pref("app.normandy.optoutstudies.enabled", false);
        user_pref("messaging-system.rsexperimentloader.enabled", false);
        
        // side-loading of telemetry-extension
        user_pref("extensions.systemAddon.update.enabled", false);
        
        // disable Mozillas new tracking aggragation thingy
        user_pref("dom.private-attribution.submission.enabled", false,);
        
        // almost only for tracking useful
        user_pref("beacon.enabled", false); // so webpage can send (tracking) data before you close tab
        user_pref("browser.send_pings", false); // hyperlink auditing (click-tracking)
        

        Note: the last two are more nuanced.

        Argument for beacon is that webpages will use a more intrusive way with noticeable delay to upload data on tab close. I personally prefer that, as a warning, but never saw one after years.

        Argument for send_pings is, that trackers will use more mean and stealthier ways to track you, if they don’t have that interface (same as in private-attribution). I do know however, that companies who track you have high greed and low morale to begin with, and use all they can get to generate more money.