diff --git a/articles/chrome.html b/articles/chrome.html index 522fce6..0f670bb 100644 --- a/articles/chrome.html +++ b/articles/chrome.html @@ -162,5 +162,4 @@ - diff --git a/articles/index.html b/articles/index.html index 680d573..c80c711 100644 --- a/articles/index.html +++ b/articles/index.html @@ -56,7 +56,7 @@ [Русский]
  • Ungoogled Chromium
  • Web Browser
  • -
  • Tor Browser
  • +
  • Tor Browser
  • diff --git a/articles/tbb.html b/articles/tbb.html new file mode 100644 index 0000000..700fcb7 --- /dev/null +++ b/articles/tbb.html @@ -0,0 +1,59 @@ + + + + + + + + + + + Tor Browser Bundle — Spyware Watchdog + + + +
    + +
    + Tor Browser Bundle Logo +

    Tor Browser Bundle

    +

    Tor is free software and an open network that helps you defend against traffic analysis, a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security.[1] This article is about the desktop Tor Browser Bundle, which is based on Firefox. Tor itself can be used with any browser.

    +

    Spyware Level: Low

    +

    The Tor browser is a privacy focused web browser that is used to access the internet through the Tor Network. Connections through the Tor network are much more private than normal connections as you do not have an IP address that is associated with you. While spyware services can tell that you are connecting from the Tor network, their ability to identify and profile you is greatly reduced.

    +
    +

    Tor Browser has automatic updates, and sends telemetry, albeit over Tor.

    +
    +

    If you go to about:networking, you will see several addresses that are affiliated with Mozilla, even before Tor is connected. You can mitigate the spyware, but note that there is a chance that it will be overwritten by future updates.

    + About Networking in Tor Browser, displaying connections prior to connecting with the Tor Network +
    +
    + +
    + + diff --git a/articles/tor.html b/articles/tor.html deleted file mode 100644 index 03f2f03..0000000 --- a/articles/tor.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Tor Browser — Spyware Watchdog - - - - Tor browser logo -

    Tor Browser

    -

    -Tor is free software and an open network that helps you defend against traffic analysis, a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security.[1] -

    -

    Spyware Level: Not Spyware

    -

    -The Tor browser is a privacy focused web browser that is used to access the internet either normally or through the Tor Network. -Connections through the Tor network are much more private than normal connections as you do not have an IP address that is -associated with you. While spyware services can tell that you are connecting from the Tor network, their ability to identify and profile you is -greatly reduced. Tor browser is Not Spyware and is the best web browser to use for privacy. -

    -

    -One thing that complicates this review is that most browsers are chastised for sending auto-update requests. However, the Tor browser is doing -this over the Tor network... so while it's definitely "phoning home", it's doing so in an anonymous way. -

    -
    -
    -

    Sources

    -

    - 1. - Tor Browser Official Site - [web.archive.org] - [wayback.archive-it.org] - [webarchive.loc.gov] - [swap.stanford.edu] - [arquivo.pt] - [archive.is] - [wayback.vefsafn.is] - [ghostarchive.org] -
    -

    -
    -

    - This article was last edited on 11/20/2018 -

    -

    - If you want to edit this article, or contribute your own article(s), visit us at the git repo on Codeberg. All contributions must be licensed under the CC0 license to be accepted. -

    - CC0 License -

    Back to catalog

    -
    - - diff --git a/guides/firefox.html b/guides/firefox.html index f8a2d94..27fcb93 100644 --- a/guides/firefox.html +++ b/guides/firefox.html @@ -22,7 +22,7 @@

    Before beginning this guide it is important that you try and cross-reference it with other guides, - to see which prespective on this topic is the best way to do it for you. At the bottom of the page are links + to see which prospective on this topic is the best way to do it for you. At the bottom of the page are links to other guides and projects like this one. You should strongly consider this as you may find other guides more useful than this one.

    @@ -135,4 +135,4 @@
    - \ No newline at end of file + diff --git a/guides/tbb.html b/guides/tbb.html new file mode 100644 index 0000000..7d9e6b2 --- /dev/null +++ b/guides/tbb.html @@ -0,0 +1,76 @@ + + + + + Tor Browser Spyware Mitigation Guide — Spyware Watchdog + + + +
    + +

    Tor Browser Mitigation Guide

    +

    Note: Changing browser settings on TBB is not recommended by some, as they argue it is bad because it increases fingerprinting. Please also note that this is SpywareWatchdog, and not FingerprintWatchdog.

    +
    +

    After following this guide the rating changes thusly:

    +

    Spyware Rating: LowNot Spyware

    +

    Besides using the torrc configuration file, or host files, the only way to completely remove the connections is to unpack two omni.ja files, and remove all the addresses, and then re-zip the omni.ja files.

    +
    +

    Find your omni.ja files:

    + + find . -name omni.ja + +

    Unpack them (do this for both of them separately):

    + + mkdir unpack +
    + mv omni.ja unpack +
    + cd unpack +
    + unzip omni.ja +
    +

    Remove telementry:

    + + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main\/collections\/nimbus-desktop-experiments\/records//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main-preview\/collections\/search-config\/records//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main\/collections\/search-config\/records//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/onecrl\.content-signature\.mozilla\.org//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/remote-settings\.content-signature\.mozilla\.org//g'; +
    + find ./Browser/ -type f -print0 | xargs -0 sed -i 's/normandy\.content-signature\.mozilla\.org//g'; +
    +

    Replace the omni.ja files:

    + + mv omni.ja back.omni.ja +
    + zip -0DXqr omni.ja * +
    + mv omni.ja .. +
    +

    Disable auto updates:

    + + mkdir -p Browser/distribution/ + +

    Create file Browser/distribution/policies.json and put in:

    + {
    "policies": {
    "DisableAppUpdate": true
    }
    }
    +
    +

    All done!

    +
    +

    If you want to edit this article, or contribute your own article(s), visit us at the git repo on Codeberg. All contributions must be licensed under the CC0 license to be accepted. +

    + + CC0 License +
    + + + diff --git a/images/tbbaboutnetworking1.png b/images/tbbaboutnetworking1.png new file mode 100644 index 0000000..edce502 Binary files /dev/null and b/images/tbbaboutnetworking1.png differ diff --git a/index.html b/index.html index 92ee53b..812671a 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@