Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question] Is Tracking Protection Completely Off #502

Open
seniorm0ment opened this issue Nov 24, 2020 · 2 comments
Open

[Question] Is Tracking Protection Completely Off #502

seniorm0ment opened this issue Nov 24, 2020 · 2 comments
Labels

Comments

@seniorm0ment
Copy link

seniorm0ment commented Nov 24, 2020

The built in Enhanced Tracking Protection pings remote servers to match to my knowledge, and I generally turn it off, I see it is on by default. Is there a reason for this? Seems like it should be disabled for these purposes.

Secondly, if I set the privacy.trackingprotection.enabled and privacy.trackingprotection.fingerprinting flag to false, it still shows in settings and about config that cryptomining, fingerprinters are both enabled, but does the basic trackingprotection.enabled flag override these even if they state true? Or does each one need to be disabled? I assume it overrides them, but wanted to ensure.

On a sidenote, what's the best way to keep the userjs up to date, when you also have modifications? It'd be a pain to manually have to make those changes evert update.

@pyllyukko
Copy link
Owner

I see it is on by default. Is there a reason for this?

Because it protects the users. Even though it connects to remote servers, it shouldn't leak information about where you browse.

Try setting the following in addition:

user_pref("privacy.trackingprotection.annotate_channels",	false);
user_pref("privacy.trackingprotection.enabled",			false);
user_pref("privacy.trackingprotection.pbmode.enabled",		false);
user_pref("plugins.flashBlock.enabled",				false);
user_pref("browser.safebrowsing.blockedURIs.enabled",		false);
// https://bugzilla.mozilla.org/show_bug.cgi?id=1410586#c6
user_pref("privacy.trackingprotection.fingerprinting.enabled",	false);
user_pref("privacy.trackingprotection.socialtracking.enabled",	false);
user_pref("privacy.trackingprotection.cryptomining.enabled",	false);
user_pref("privacy.socialtracking.block_cookies.enabled",	false);
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime",	9999999999999);

On a sidenote, what's the best way to keep the userjs up to date, when you also have modifications?

With the help of Git. Stash or having a separate branch for your modifications.

@nodiscc
Copy link
Contributor

nodiscc commented Jan 14, 2021

what's the best way to keep the userjs up to date, when you also have modifications?

I opened a separate issue with a proposed/easier solution #505

pings remote servers to match to my knowledge

No information about your browsing is sent according to documentation. Visited URLs are checked against a local list which Firefox updates periodically (like any other content/ad blocker).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants