diff --git a/articles/seamonkey.html b/articles/seamonkey.html index ad333a4..c25826a 100644 --- a/articles/seamonkey.html +++ b/articles/seamonkey.html @@ -1,64 +1,42 @@ - - - - - - - - - - - SeaMonkey — Spyware Watchdog - - - -
- -
- SeaMonkey Logo -

SeaMonkey

-

- SeaMonkey is a web browser, email client, news reader, HTML editor and an IRC client.[2] -

-

Spyware Level: High

-

- SeaMonkey makes about 35 requests on first start, with a connection to Google SafeBrowsing recurring about every 30 minutes. While the latter can be partially disabled, there is no apparent way to disable connections to location.services.mozilla.com and shavar.services.mozilla.com (which is GoogleSafe Browsing related). -
-

- SeaMonkey Requests in Mitmproxy -
-
- -
- + + + + + + + + + SeaMonkey - Spyware Watchdog + + + +
+ +
+ SeaMonkey Logo +

SeaMonkey

+

SeaMonkey is a web browser, email client, news reader, HTML editor and an IRC client.[2]

+

Spyware Level: Medium

+

SeaMonkey makes about 35 requests on first start, with a connection to Google SafeBrowsing recurring about every 30 minutes, though it can be disabled.

+ SeaMonkey Requests in Mitmproxy +
+
+
+

Sources:

+

1. + SeaMonkey Logo (WikiMedia)

+

2. + https://www.seamonkey-project.org/about[web.archive.org]

+
+ This article was created on 1/17/2021
+ This article was last edited on 5/3/2021 +
+

If you want to contribute to this website, you can always make a pull request.

+

All contributions must be licensed under the CC0 license to be accepted.

+ CC0 License +
+
+ diff --git a/guides/files/seamonkey.txt b/guides/files/seamonkey.txt new file mode 100644 index 0000000..3c25275 --- /dev/null +++ b/guides/files/seamonkey.txt @@ -0,0 +1,22 @@ +/* + * This is the spywarewatchdog user.js + * Feel free to change it to your needs :) + */ + +/* This disables auto updates for the browser. */ +user_pref("app.update.enabled", false); +/* This disables SeaMonkey from fetching safebrowsing information. */ +user_pref("browser.safebrowsing.provider.mozilla.updateURL", "http://safebrowsing-disabled"); +/* Ditto the above, but for location services. */ +user_pref("browser.search.geoip.url", "http://location-services-disabled"); +/* This disables the homepage. */ +user_pref("browser.startup.homepage", "about:blank"); +/* This disables the addon blocklist. */ +user_pref("extensions.blocklist.enabled", false); +// This disables extension updates */ +user_pref("extensions.update.enabled", false); +/* This disables the new version page. */ +user_pref("startup.homepage_override_url", "about:blank"); +/* Not really needed, but it doesn't hurt to try. */ +user_pref("browser.safebrowsing.malware.enabled", false); +user_pref("browser.safebrowsing.phishing.enabled", false); diff --git a/guides/seamonkey.html b/guides/seamonkey.html index 0e7c112..19d62fb 100644 --- a/guides/seamonkey.html +++ b/guides/seamonkey.html @@ -1,51 +1,48 @@ - - - - - - - - - - - SeaMonkey — Spyware Watchdog - - - -
-
- SeaMonkey Logo -

SeaMonkey

-

This guide was tested on version 2.53.5.

-

Spyware Level: HighMedium

-

Ideally disable internet connections before the first run of the browser.

-

In Edit→Preferences→Browser set "Blank page" for "Browser Startup" (or set your own homepage). Do the same for "New Window" and "New Tab" (which are also options in the "Display on" drop down menu).

- seamonkey_startonblankpage.png -

In Edit→Preferences→Privacy & Security uncheck everything under "Safe Browsing".

- seamonkey_disablesafebrowsing.png - -

You can disable automatic updates for add-ons in Edit→Preferences→Advanced→Software Installation, and unchecking "Automatically check for updates" and "Automatically download and install the updates".

- seamonkey_disableautomaticupdates.png -
- -
- + + + + + + + + + SeaMonkey - Spyware Watchdog + + + +
+ +
+ SeaMonkey Logo +

SeaMonkey

+
+

This guide was tested on version 2.53.5.

+
+

Spyware Level: Medium -> Low

+

Ideally disable internet connections before the first run of the browser.

+

Type in the url about:config and search for these options and set them to the following:

+

app.update.enabled -> false

+

browser.safebrowsing.provider.mozilla.updateURL -> http://safebrowsing-disabled

+

browser.search.geoip.url -> http://location-services-disabled

+

browser.startup.homepage -> about:blank

+

extensions.blocklist.enabled -> false

+

extensions.update.enabled -> false

+

startup.homepage_override_url -> about:blank

+

browser.safebrowsing.malware.enabled -> false

+

browser.safebrowsing.phishing.enabled -> false

+
+
+ This article was created on 1/17/2021
+ This article was last edited on 5/3/2021 +
+

If you want to contribute to this website, you can always make a pull request.

+

All contributions must be licensed under the CC0 license to be accepted.

+ CC0 License +
+
+
+ diff --git a/images/seamonkey/seamonkey_disableautomaticupdates.png b/images/seamonkey/seamonkey_disableautomaticupdates.png deleted file mode 100644 index ea86728..0000000 Binary files a/images/seamonkey/seamonkey_disableautomaticupdates.png and /dev/null differ diff --git a/images/seamonkey/seamonkey_disablesafebrowsing.png b/images/seamonkey/seamonkey_disablesafebrowsing.png deleted file mode 100644 index 4f52cc5..0000000 Binary files a/images/seamonkey/seamonkey_disablesafebrowsing.png and /dev/null differ diff --git a/images/seamonkey/seamonkey_startonblankpage.png b/images/seamonkey/seamonkey_startonblankpage.png deleted file mode 100644 index fcdb107..0000000 Binary files a/images/seamonkey/seamonkey_startonblankpage.png and /dev/null differ