diff --git a/index.html b/index.html index c4b41b93..9baf6c74 100644 --- a/index.html +++ b/index.html @@ -958,142 +958,165 @@

Getting started:

-
    -
  1. privacy.firstparty.isolate = true
  2. - +
      +
    1. privacy.firstparty.isolate = true +
        +
      • A result of the Tor Uplift effort, this preference isolates all browser identifier sources (e.g. cookies) to the first party domain, with the goal of preventing tracking across different domains. (Don't do this if you are using the Firefox Addon "Cookie AutoDelete" with Firefox v58 or below.)
      • +
      +
    2. -
    3. privacy.resistFingerprinting = true
    4. - +
    5. privacy.resistFingerprinting = true +
        +
      • A result of the Tor Uplift effort, this preference makes Firefox more resistant to browser fingerprinting.
      • +
      +
    6. -
    7. privacy.trackingprotection.enabled = true
    8. - +
    9. privacy.trackingprotection.enabled = true +
        +
      • This is Mozilla’s new built in tracking protection. It uses Disconnect.me filter list, which is redundant if you are already using uBlock Origin 3rd party filters, therefore you should set it to false if you are using the add-on functionalities.
      • +
      +
    10. -
    11. browser.cache.offline.enable = false
    12. - +
    13. browser.cache.offline.enable = false +
        +
      • Disables offline cache.
      • +
      +
    14. -
    15. browser.safebrowsing.malware.enabled = false
    16. - +
    17. browser.safebrowsing.malware.enabled = false +
        +
      • Disable Google Safe Browsing malware checks. Security risk, but privacy improvement.
      • +
      +
    18. -
    19. browser.safebrowsing.phishing.enabled = false
    20. - +
    21. browser.safebrowsing.phishing.enabled = false +
        +
      • Disable Google Safe Browsing and phishing protection. Security risk, but privacy improvement.
      • +
      +
    22. -
    23. browser.send_pings = false
    24. - +
    25. browser.send_pings = false +
        +
      • The attribute would be useful for letting websites track visitors’ clicks.
      • +
      +
    26. -
    27. browser.sessionstore.max_tabs_undo = 0
    28. - +
    29. browser.sessionstore.max_tabs_undo = 0 +
        +
      • Even with Firefox set to not remember history, your closed tabs are stored temporarily at Menu -> History -> Recently Closed Tabs.
      • +
      +
    30. -
    31. browser.urlbar.speculativeConnect.enabled = false
    32. - +
    33. browser.urlbar.speculativeConnect.enabled = false +
        +
      • Disable preloading of autocomplete URLs. Firefox preloads URLs that autocomplete when a user types into the address bar, which is a concern if URLs are suggested that the user does not want to connect to. Source
      • +
      +
    34. -
    35. dom.battery.enabled = false
    36. - +
    37. dom.battery.enabled = false +
        +
      • Website owners can track the battery status of your device. Source
      • +
      +
    38. -
    39. dom.event.clipboardevents.enabled = false
    40. - +
    41. dom.event.clipboardevents.enabled = false +
        +
      • Disable that websites can get notifications if you copy, paste, or cut something from a web page, and it lets them know which part of the page had been selected.
      • +
      +
    42. -
    43. geo.enabled = false
    44. - +
    45. geo.enabled = false +
        +
      • Disables geolocation.
      • +
      +
    46. -
    47. media.eme.enabled = false
    48. - +
    49. media.eme.enabled = false +
        +
      • Disables playback of DRM-controlled HTML5 content, which, if enabled, automatically downloads the Widevine Content Decryption Module provided by Google Inc. Details
      • +
      • DRM-controlled content that requires the Adobe Flash or Microsoft Silverlight NPAPI plugins will still play, if installed and enabled in Firefox.
      • +
      +
    50. -
    51. media.gmp-widevinecdm.enabled = false
    52. - +
    53. media.gmp-widevinecdm.enabled = false +
        +
      • Disables the Widevine Content Decryption Module provided by Google Inc., used for the playback of DRM-controlled HTML5 content. Details
      • +
      +
    54. -
    55. media.navigator.enabled = false
    56. - +
    57. media.navigator.enabled = false +
        +
      • Websites can track the microphone and camera status of your device.
      • +
      +
    58. -
    59. network.cookie.cookieBehavior = 1
    60. - +
    61. network.cookie.cookieBehavior = 1 +
        +
      • Disable cookies
      • +
      • 0 = Accept all cookies by default
      • +
      • 1 = Only accept from the originating site (block third party cookies)
      • +
      • 2 = Block all cookies by default
      • +
      +
    62. -
    63. network.cookie.lifetimePolicy = 2
    64. - +
    65. network.cookie.lifetimePolicy = 2 +
        +
      • cookies are deleted at the end of the session
      • +
      • 0 = Accept cookies normally
      • +
      • 1 = Prompt for each cookie
      • +
      • 2 = Accept for current session only
      • +
      • 3 = Accept for N days
      • +
      +
    66. -
    67. network.http.referer.trimmingPolicy = 2
    68. - +
    69. network.http.referer.trimmingPolicy = 2 +
        +
      • Send only the scheme, host, and port in the Referer header
      • +
      • 0 = Send the full URL in the Referer header
      • +
      • 1 = Send the URL without its query string in the Referer header
      • +
      • 2 = Send only the scheme, host, and port in the Referer header
      • +
      +
    70. -
    71. network.http.referer.XOriginPolicy = 2
    72. - +
    73. network.http.referer.XOriginPolicy = 2 +
        +
      • Only send Referer header when the full hostnames match. (Note: if you notice significant breakage, you might try 1 combined with an XOriginTrimmingPolicy tweak below.) Source
      • +
      • 0 = Send Referer in all cases
      • +
      • 1 = Send Referer to same eTLD sites
      • +
      • 2 = Send Referer only when the full hostnames match
      • +
      +
    74. -
    75. network.http.referer.XOriginTrimmingPolicy = 2
    76. - +
    77. network.http.referer.XOriginTrimmingPolicy = 2 +
        +
      • When sending Referer across origins, only send scheme, host, and port in the Referer header of cross-origin requests. Source
      • +
      • 0 = Send full url in Referer
      • +
      • 1 = Send url without query string in Referer
      • +
      • 2 = Only send scheme, host, and port in Referer
      • +
      +
    78. -
    79. webgl.disabled = true
    80. - +
    81. webgl.disabled = true +
        +
      • WebGL is a potential security risk. Source
      • +
      +
    82. -
    83. browser.sessionstore.privacy_level = 2
    84. - +
    85. browser.sessionstore.privacy_level = 2 +
        +
      • This preference controls when to store extra information about a session: contents of forms, scrollbar positions, cookies, and POST data. Details
      • +
      • 0 = Store extra session data for any site. (Default starting with Firefox 4.)
      • +
      • 1 = Store extra session data for unencrypted (non-HTTPS) sites only. (Default before Firefox 4.)
      • +
      • 2 = Never store extra session data.
      • +
      +
    86. -
    87. network.IDN_show_punycode = true
    88. - -
    +
  3. network.IDN_show_punycode = true + +
  4. +

Related Information

@@ -2985,71 +3008,72 @@ Windows 10 Privacy -
    -
  1. Data syncing is by default enabled.
  2. - - - +
      +
    1. Data syncing is by default enabled. +
        +
      • Browsing history and open websites.
      • +
      • Apps settings.
      • +
      • WiFi hotspot names and passwords.
      • +
      +
    2. -
    3. Your device is by default tagged with a unique advertising ID.
    4. - +
    5. Your device is by default tagged with a unique advertising ID. +
        +
      • Used to serve you with personalized advertisements by third-party advertisers and ad networks.
      • +
      +
    6. -
    7. Cortana can collect any of your data.
    8. - - - - - +
    9. Cortana can collect any of your data. +
        +
      • Your keystrokes, searches and mic input.
      • +
      +
        +
      • Calendar data.
      • +
      +
        +
      • Music you listen to.
      • +
      +
        +
      • Credit Card information.
      • +
      +
        +
      • Purchases.
      • +
      +
    10. -
    11. Microsoft can collect any personal data.
    12. - - - - - - - - +
    13. Microsoft can collect any personal data. +
        +
      • Your identity.
      • +
      +
        +
      • Passwords.
      • +
      +
        +
      • Demographics.
      • +
      +
        +
      • Interests and habits.
      • +
      +
        +
      • Usage data.
      • +
      +
        +
      • Contacts and relationships.
      • +
      +
        +
      • Location data.
      • +
      +
        +
      • Content like emails, instant messages, caller list, audio and video recordings.
      • +
      +
    14. -
    15. Your data can be shared.
    16. - -
    +
  3. Your data can be shared. + +
  4. +