41 lines
1.5 KiB
Markdown
Raw Normal View History

2020-06-18 10:59:51 -04:00
<!--
Title: How to mitigate fingerprinting and IP leaks using Firefox advanced preferences
Description: Learn how to mitigate fingerprinting and IP leaks using Firefox advanced preferences.
Author: Sun Knudsen <https://github.com/sunknudsen>
Contributors: Sun Knudsen <https://github.com/sunknudsen>
2020-09-10 10:07:07 -04:00
Reviewers:
2020-06-18 10:59:51 -04:00
Publication date: 2020-05-15T00:00:00.000Z
Listed: true
2020-06-18 10:59:51 -04:00
-->
# How to mitigate fingerprinting and IP leaks using Firefox advanced preferences
[![How to mitigate fingerprinting and IP leaks using Firefox advanced preferences - YouTube](how-to-mitigate-fingerprinting-and-ip-leaks-using-firefox-advanced-preferences.png)](https://www.youtube.com/watch?v=uYoJ7U0OMCY "How to mitigate fingerprinting and IP leaks using Firefox advanced preferences - YouTube")
2020-12-31 10:35:49 -05:00
## Guide
2020-08-10 19:35:31 -04:00
### Step 1: make sure you are running the latest version of Firefox
2020-06-18 10:59:51 -04:00
2020-08-10 19:35:31 -04:00
### Step 2: make sure you configured Firefox for privacy using [https://www.youtube.com/watch?v=NH4DdXC0RFw](https://www.youtube.com/watch?v=NH4DdXC0RFw)
2020-06-18 10:59:51 -04:00
2020-08-10 19:35:31 -04:00
### Step 3: in `Privacy & Security`, disable `Deceptive Content and Dangerous Software Protection`
2020-06-18 10:59:51 -04:00
2020-08-10 19:35:31 -04:00
### Step 4: open `about:config` and set the following
2020-06-18 10:59:51 -04:00
```
dom.event.clipboardevents.enabled = false
geo.enabled = false
media.eme.enabled = false
media.navigator.enabled = false
media.peerconnection.enabled = false
network.dns.disablePrefetch = true
network.http.sendRefererHeader = 0
network.prefetch-next = false
privacy.firstparty.isolate = true
privacy.resistFingerprinting = true
privacy.trackingprotection.enabled = true
webgl.disabled = true
```
2020-12-03 06:29:52 -05:00
👍